/* ============================================================
   COLNAGHI — Design System & Global Styles
   Gagosian-inspired · Ultra-minimal · Zero decoration
   ============================================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ---- Design Tokens ---- */
:root {
    /* Colors — Monochromatic */
    --white: #ffffff;
    --black: #000000;
    --grey-50: #fafafa;
    --grey-100: #f5f5f5;
    --grey-200: #eeeeee;
    --grey-300: #e0e0e0;
    --grey-400: #bdbdbd;
    --grey-500: #9e9e9e;
    --grey-600: #757575;
    --grey-700: #616161;
    --grey-800: #424242;
    --grey-900: #1a1a1a;
    --gold: #C9A96E;
    --gold-light: #d4bc8e;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
    --space-3xl: 6rem;

    /* Layout */
    --max-width: 1440px;
    --content-width: 1320px;
    --nav-height: 80px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}


/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.5rem); }

.text-sm {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.text-xs {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--grey-600);
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-700);
}


/* ---- Layout ---- */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.container--wide {
    max-width: var(--max-width);
}

.section {
    padding: var(--space-xl) 0;
}

.section--xl {
    padding: var(--space-2xl) 0;
}

.section--light {
    background: var(--grey-50);
}

.section--dark {
    background: var(--grey-900);
    color: var(--white);
}


/* ---- Navigation — Gagosian minimal ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    transition: background-color var(--duration-normal) var(--ease-out),
                backdrop-filter var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-200);
}

.nav--dark {
    color: var(--white);
}

.nav--dark.nav--scrolled {
    color: var(--black);
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo svg {
    height: 18px;
    width: auto;
    fill: currentColor;
    transition: fill var(--duration-normal) var(--ease-out);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Social icons live inside the menu markup but only show in the mobile overlay. */
.nav__menu-social {
    display: none;
}

.nav__link {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    padding: 0.25rem 0;
    transition: opacity var(--duration-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    opacity: 0.6;
}

.nav__link--buy {
    font-weight: 500;
    color: var(--white, #fff) !important;
    background: linear-gradient(180deg, #d4b06a 0%, #b8944f 100%);
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    font-size: 0.68rem;
    text-transform: uppercase;
    border: 1px solid rgba(212, 176, 106, 0.4);
    box-shadow: 0 2px 8px rgba(184, 151, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link--buy:hover {
    background: linear-gradient(180deg, #e0c07a 0%, #c9a55a 100%);
    box-shadow: 0 4px 16px rgba(184, 151, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    opacity: 1;
}
/* The Buy Now pill must not show the underline animation the other nav links use */
.nav__link--buy::after {
    display: none !important;
}

/* Navigation Dropdown */
.nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1.25rem;
    padding: 0.6rem 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Small pointer arrow at the top of the dropdown */
.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 1.6rem;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transform: rotate(45deg);
}

/* Invisible bridge so the dropdown doesn't close when moving the cursor down */
.nav__dropdown-menu::after {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    position: relative;
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-700);
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease, padding 0.25s ease;
}
/* Gold accent dot that appears on hover */
.nav__dropdown-link::before {
    content: '';
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold, #b8974a);
    transform: translateY(-50%) scale(0);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__dropdown-link:hover {
    color: var(--grey-900, #1a1a1a);
    background: rgba(184, 151, 74, 0.06);
    padding-left: 1.7rem;
}
.nav__dropdown-link:hover::before {
    transform: translateY(-50%) scale(1);
}

button.nav__dropdown-link {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-700);
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    margin: 0;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
}
button.nav__dropdown-link:hover {
    background: rgba(184, 151, 74, 0.06);
    padding-left: 1.7rem;
}

/* Mobile profile icon — hidden on desktop */
.nav__mobile-profile {
    display: none;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.nav__mobile-profile:hover {
    opacity: 1;
}

.nav__dropdown-link:hover {
    color: var(--black);
}

/* Private Area Button */
.nav__private-btn {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px solid currentColor;
    opacity: 0.7;
    transition: opacity var(--duration-fast);
}

.nav__private-btn:hover {
    opacity: 1;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile Hamburger — 2 lines */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 24px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform var(--duration-normal) var(--ease-out),
                opacity var(--duration-fast);
}

.nav__hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}


/* ---- Hero ---- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s var(--ease-in-out);
}

.hero__slide.active {
    opacity: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s var(--ease-out);
}

.hero__slide.active .hero__image {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.hero__content {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-md);
    right: var(--space-md);
    color: var(--white);
    max-width: 700px;
}

.hero__label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out) 0.3s,
                transform 0.8s var(--ease-out) 0.3s;
}

.hero__slide.active .hero__label {
    opacity: 0.8;
    transform: translateY(0);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.5s,
                transform 0.8s var(--ease-out) 0.5s;
}

.hero__slide.active .hero__title {
    opacity: 1;
    transform: translateY(0);
}

.hero__subtitle {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out) 0.7s,
                transform 0.8s var(--ease-out) 0.7s;
    max-width: 500px;
}

.hero__slide.active .hero__subtitle {
    opacity: 0.85;
    transform: translateY(0);
}

.hero__cta {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.875rem 2.5rem;
    transition: all var(--duration-normal) var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

.hero__slide.active .hero__cta {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--duration-normal) var(--ease-out),
                opacity 0.8s var(--ease-out) 0.9s,
                transform 0.8s var(--ease-out) 0.9s;
}

.hero__cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Hero Navigation */
.hero__nav {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.hero__dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--white);
    transition: width linear;
}


/* ---- Section Headers ---- */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--grey-200);
}

.section--dark .section-header {
    border-bottom-color: rgba(255,255,255,0.12);
}

.section-header__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.01em;
}

.section-header__link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-600);
    transition: color var(--duration-fast);
    white-space: nowrap;
    margin-left: var(--space-md);
}

.section-header__link:hover {
    color: var(--black);
}

.section-header__link::after {
    content: ' →';
}

.section-footer .section-header__link {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: #C9A96E;
    border: 1px solid #C9A96E;
    padding: 0.55rem 1.8rem;
    display: inline-block;
    transition: all 0.25s;
}

.section-footer .section-header__link:hover {
    background: #C9A96E;
    color: #fff;
}

/* Compact header for related artwork sections */
.section-header--compact .section-header__title {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    letter-spacing: 0.03em;
    font-weight: 400;
}

/* Horizontal scroll strip for related artworks — infinite auto-slide */
.related-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 2rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.related-artworks-section .container {
    overflow: visible;
}

.related-artworks-section {
    overflow: hidden;
}

.related-artworks-section .related-scroll {
    overflow-x: auto;
    overflow-y: hidden;
}

.related-scroll.is-dragging {
    cursor: grabbing;
}

/* A single related work (or a few that already fit) renders statically — no
   carousel looping/repetition. */
.related-scroll.is-static {
    cursor: default;
    overflow: visible;
}
.related-scroll.is-static .card-artwork {
    cursor: pointer;
}

.related-scroll .card-artwork {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

/* Scroll offset for anchor links with fixed nav */
[id] {
    scroll-margin-top: 100px;
}

/* Standalone Section Title */
.section__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: var(--space-lg);
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    margin-top: calc(var(--space-sm) * -1);
    margin-bottom: var(--space-xl);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-600);
    max-width: 56ch;
}


/* ---- Heritage — EST. 1760 ---- */
.heritage {
    background: var(--white);
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.heritage__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.heritage__left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heritage__year {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--grey-100);
    user-select: none;
}

.heritage__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.heritage__right {
    max-width: 520px;
}

.heritage__label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.heritage__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.heritage__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey-600);
    margin-bottom: 2rem;
    font-weight: 300;
}

.heritage__cta {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border: 1px solid var(--black);
    color: var(--black);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--duration-normal) var(--ease-out);
}

.heritage__cta:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 768px) {
    .heritage__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .heritage__year {
        font-size: 7rem;
    }

    .heritage__right {
        max-width: 100%;
    }
}


/* ---- Department Rows — Scrolling strips ---- */
.dept-rows {
    border-top: none;
}

.dept-row {
    border-bottom: none;
    padding: var(--space-lg) 0;
}

.dept-row__header {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.dept-row__header-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.dept-row__label {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
    min-width: 90px;
}

.dept-row__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.dept-row__cta {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-600);
    transition: color var(--duration-normal);
    white-space: nowrap;
}

.dept-row__cta:hover {
    color: var(--black);
}

.dept-row__cta span {
    display: inline-block;
    transition: transform var(--duration-normal) var(--ease-out);
}

.dept-row__cta:hover span {
    transform: translateX(4px);
}

/* Scrolling track */
.dept-row__scroll {
    overflow: hidden;
    position: relative;
}

.dept-row__track {
    display: flex;
    gap: var(--space-sm);
    width: max-content;
    will-change: transform;
}

.dept-row__track:hover {
    /* JS handles pause */
}

.dept-row__item {
    flex-shrink: 0;
    width: 260px;
    cursor: pointer;
    display: block;
}

.dept-row__image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--grey-100);
    margin-bottom: 0.5rem;
}

.dept-row__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out), opacity var(--duration-slow) var(--ease-out);
}

.dept-row__item:hover .dept-row__image {
    opacity: 0.85;
    transform: scale(1.06);
}

.dept-row__item-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey-800);
    line-height: 1.3;
}

.dept-row__item-artist {
    font-size: 0.75rem;
    color: var(--grey-500);
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .dept-row__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .dept-row__header-left {
        flex-direction: column;
        gap: 0.25rem;
    }

    .dept-row__item {
        width: 200px;
    }

    .dept-row__track {
        animation-duration: 20s;
    }
}


/* ---- Video Fullscreen ---- */
.video-fullscreen {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-fullscreen__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(2rem, 4vw, 4rem);
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 40%, transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.video-fullscreen__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.video-fullscreen__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.video-fullscreen__desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.6;
}

.video-fullscreen__cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 1.6rem;
    /* The overlay disables pointer events; re-enable them on the link. */
    pointer-events: auto;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 0.85rem 1.9rem;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.18);
    transition: background var(--duration-fast, 0.2s) var(--ease-out, ease),
                border-color var(--duration-fast, 0.2s) var(--ease-out, ease),
                color var(--duration-fast, 0.2s) var(--ease-out, ease);
}
.video-fullscreen__cta:hover {
    background: rgba(255,255,255,0.95);
    border-color: #fff;
    color: #1a1a1a;
}


/* ---- Artwork Cards — Grid ---- */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.artwork-card {
    display: block;
    cursor: pointer;
}

.artwork-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--grey-100);
    margin-bottom: var(--space-sm);
}

.artwork-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.artwork-card:hover .artwork-card__image {
    opacity: 0.85;
}

.artwork-card__info {
    margin-bottom: 0.5rem;
}

.artwork-card__artist {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: 0.25rem;
}

.artwork-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.artwork-card__meta {
    font-size: 0.8125rem;
    color: var(--grey-500);
}

.artwork-card__cta {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-600);
    transition: color var(--duration-fast);
}

.artwork-card:hover .artwork-card__cta {
    color: var(--black);
}


/* ---- Exhibitions ---- */
.exhibition-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    align-items: center;
}

.exhibition-row__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--grey-100);
}

.exhibition-row__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.exhibition-row:hover .exhibition-row__image {
    opacity: 0.9;
}

.exhibitions__label {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.375rem 0.875rem;
    backdrop-filter: blur(10px);
}

.exhibitions__label--current {
    background: rgba(201, 169, 110, 0.85);
}

.exhibition-row__location {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: var(--space-xs);
}

.exhibition-row__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.exhibition-row__dates {
    font-size: 0.8125rem;
    color: var(--grey-500);
    margin-bottom: var(--space-sm);
}

.exhibition-row__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--grey-700);
}

/* Past Exhibitions heading */
.exhibitions__past-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
}

/* Past Exhibitions grid */
.exhibitions-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* ── Home featured — mosaic grid (Buy Now) ── */
.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding-bottom: 1rem;
    position: relative;
}

/* Few items fallback — use flex row instead of columns */
.home-featured-grid--few {
    grid-template-rows: 1fr;
    grid-auto-columns: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home-featured-grid--few .card-artwork {
    flex: 1 1 280px;
    max-width: calc(33.333% - 1rem);
}

.home-featured-grid .card-artwork {
    margin-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
}

.home-featured-grid--few .card-artwork {
    margin-bottom: 0;
}

.home-featured-grid .card-artwork__image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--grey-50, #fafafa);
}

.home-featured-grid .card-artwork__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Dynamic cover section — blur disabled, white bg */
.dynamic-cover-section {
    position: relative;
}

.dynamic-cover-section__bg {
    display: none;
}

.dynamic-cover-section::after {
    display: none;
}

.dynamic-cover-section__content {
    position: relative;
}

.exhibition-item {
    display: block;
}

.exhibition-item__image-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--grey-100);
    margin-bottom: var(--space-sm);
}

.exhibition-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.exhibition-item:hover .exhibition-item__image {
    opacity: 0.85;
}

.exhibition-item__location {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.25rem;
}

.exhibition-item__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.exhibition-item__dates {
    font-size: 0.8125rem;
    color: var(--grey-500);
}

/* ---- Event Index Minimal (Present/Past) ---- */
.event-index-minimal .section-header {
    margin-bottom: 1.25rem;
}

.event-index-stack {
    display: grid;
    gap: 1.25rem;
}

.event-index-row {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    gap: 1.25rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 0.85rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.event-index-row:hover {
    border-color: #cfcfcf;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.event-index-row__cover-wrap {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f4f4;
}

.event-index-row__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-index-row__content {
    display: flex;
    flex-direction: column;
}

.event-index-row__label {
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #757575;
    margin-bottom: 0.45rem;
}

.event-index-row__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.event-index-row__title a:hover {
    text-decoration: underline;
}

.event-index-row__location {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #707070;
    margin-bottom: 0.3rem;
}

.event-index-row__dates {
    font-size: 0.82rem;
    color: #7e7e7e;
    margin-bottom: 0.55rem;
}

.event-index-row__desc {
    font-size: 0.93rem;
    color: #3f3f3f;
    line-height: 1.65;
    max-width: 62ch;
}

.event-index-row__reveal-zone {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.85rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.event-index-row:hover .event-index-row__reveal-zone,
.event-index-row:focus-within .event-index-row__reveal-zone {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.9rem;
}

.event-index-row__preview-group {
    border-top: 1px solid #ececec;
    padding-top: 0.65rem;
}

.event-index-row__preview-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #878787;
    margin-bottom: 0.45rem;
}

.event-index-row__preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.event-index-row__preview-item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f3f3;
}

.event-index-row__preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-index-row__works-list {
    display: grid;
    gap: 0.45rem;
}

.event-index-row__work-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #efefef;
}

.event-index-row__work-item span {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #848484;
}

.event-index-row__work-item strong {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.2;
}


/* ---- Our Galleries — Dark section ---- */
.galleries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--duration-normal);
}

.gallery-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.gallery-card__city {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.gallery-card__address {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--grey-400);
    margin-bottom: var(--space-md);
}

.gallery-card__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.gallery-card__details p {
    font-size: 0.8125rem;
    color: var(--grey-500);
    line-height: 1.5;
}

.gallery-card__details strong {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-400);
    font-weight: 500;
}

.gallery-card__details a {
    color: var(--grey-400);
    transition: color var(--duration-fast);
}

.gallery-card__details a:hover {
    color: var(--white);
}


/* ---- Carousel (kept for artwork detail page) ---- */
.carousel {
    position: relative;
    overflow-x: auto;
}

.carousel__track {
    display: flex;
    gap: var(--space-md);
    transition: transform var(--duration-slow) var(--ease-out);
    cursor: grab;
    user-select: none;
}

.carousel__track:active {
    cursor: grabbing;
}

.carousel__track.dragging {
    transition: none;
}

.carousel__controls {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    justify-content: flex-end;
}

.carousel__btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
    color: var(--grey-700);
}

.carousel__btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.carousel__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel__btn svg {
    width: 16px;
    height: 16px;
}


/* ---- Legacy Cards (artwork detail related pages) ---- */
.card-artwork {
    flex-shrink: 0;
    width: 320px;
    cursor: pointer;
}

.card-artwork__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: transparent;
    margin-bottom: var(--space-sm);
}

.card-artwork__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.card-artwork:hover .card-artwork__image {
    opacity: 0.85;
}

.card-artwork__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 1.6rem;
    background: linear-gradient(to top, rgba(8,8,8,0.55), rgba(8,8,8,0.10) 50%, transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.card-artwork:hover .card-artwork__overlay {
    opacity: 1;
}

.card-artwork__overlay-btn {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.7);
    padding: 0.65rem 1.5rem;
    display: inline-block;
    transition: all var(--duration-fast);
}

.card-artwork__artist {
    font-size: 0.63rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.45rem;
    margin-top: 0.55rem;
}

.card-artwork__title {
    font-family: var(--font-heading);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.card-artwork__meta {
    font-size: 0.8125rem;
    color: var(--grey-500);
}

.card-artwork__price {
    font-size: 0.8125rem;
    color: var(--grey-700);
    margin-top: 0.5rem;
    font-weight: 500;
}


/* ---- Newsletter ---- */
.newsletter {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--grey-900);
    color: var(--white);
    overflow: hidden;
}

.newsletter__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(201, 169, 110, 0.12), transparent),
        radial-gradient(ellipse 50% 60% at 85% 50%, rgba(201, 169, 110, 0.08), transparent);
    pointer-events: none;
}

.newsletter__inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.newsletter__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-xs);
    color: var(--white);
    line-height: 1.15;
}

.newsletter__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.newsletter__form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter__input-wrap {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color var(--duration-fast);
}

.newsletter__input-wrap:focus-within {
    border-color: var(--gold);
}

.newsletter__input {
    flex: 1;
    padding: 0.9375rem 1.25rem;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    color: var(--white);
}

.newsletter__input:focus {
    outline: none;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9375rem 1.75rem;
    background: var(--gold);
    color: var(--grey-900);
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--duration-fast);
    white-space: nowrap;
}

.newsletter__submit:hover {
    background: var(--gold-light);
}

.newsletter__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: var(--space-sm);
}


/* ---- Footer ---- */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--grey-200);
}

.footer__logo svg {
    height: 18px;
    width: auto;
    fill: var(--black);
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    font-family: var(--font-body);
}

.footer__links li {
    margin-bottom: 0.625rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--grey-600);
    transition: color var(--duration-fast);
}

.footer__links a:hover {
    color: var(--black);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--grey-500);
    letter-spacing: 0.05em;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social a {
    color: var(--grey-500);
    transition: color var(--duration-fast);
}

.footer__social a:hover {
    color: var(--black);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}


/* ---- Artwork Detail Page ---- */
.artwork-detail {
    padding-top: var(--nav-height);
}

.artwork-detail__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height));
}

.artwork-detail__gallery {
    position: relative;
    background: var(--artwork-ambient-color, #f4f2ee);
    transition: background-color 0.45s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    overflow: hidden;
}

.artwork-zoom,
.artwork-detail__thumbnails {
    position: relative;
    z-index: 2;
}

.artwork-detail__main-image {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform var(--duration-normal) var(--ease-out);
}

/* Hover Zoom */
.artwork-zoom {
    position: relative;
    display: inline-block;
    cursor: crosshair;
}
/* Per-image "detail" zoom (artwork/product page): an image with a zoom set in
   the admin is shown cropped/zoomed to that detail, clipped by the wrapper.
   The full work (no zoom) keeps the normal uncropped view. */
.artwork-zoom.is-detail {
    overflow: hidden;
    cursor: default;
}
.artwork-zoom.is-detail .artwork-zoom__lens {
    display: none !important;
}

.artwork-zoom__lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 180px;
    border-radius: 2px;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    backdrop-filter: contrast(1.05) saturate(1.1);
}

.artwork-zoom:hover .artwork-zoom__lens {
    opacity: 1;
}

/* Touch devices: disable the zoom lens entirely (no sticky hover bug on mobile) */
@media (hover: none), (pointer: coarse) {
    .artwork-zoom__lens {
        display: none !important;
    }
}

.artwork-detail__info {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artwork-detail__breadcrumb {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: var(--space-lg);
}

.artwork-detail__breadcrumb a {
    transition: color var(--duration-fast);
}

.artwork-detail__breadcrumb a:hover {
    color: var(--black);
}

.artwork-detail__breadcrumb span {
    margin: 0 0.5rem;
}

.artwork-detail__artist-name {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: var(--space-xs);
}

.artwork-detail__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.artwork-detail__stock {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin: -0.5rem 0 1rem;
}

.artwork-detail__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--grey-200, #e5e5e5);
    border-bottom: 1px solid var(--grey-200, #e5e5e5);
}

.artwork-detail__spec-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.25rem;
}

.artwork-detail__spec-value {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-900, #1a1a1a);
    line-height: 1.5;
}

.artwork-detail__meta {
    margin-bottom: var(--space-md);
}

.artwork-detail__meta-heading {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.75rem;
}

.artwork-detail__fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.artwork-detail__fact-card {
    border: none;
    background: transparent;
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: auto;
    border-bottom: 1px solid #e0e0e0;
}

.artwork-detail__meta-row {
    display: flex;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.875rem;
}

.artwork-detail__meta-label {
    width: 120px;
    flex-shrink: 0;
    color: var(--grey-500);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.artwork-detail__meta-value {
    color: var(--grey-800);
}

.artwork-detail__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.artwork-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.artwork-detail__actions--stacked {
    flex-direction: column;
}
.artwork-detail__actions--stacked .btn--full {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* Share */
.artwork-detail__share {
    position: relative;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-200, #e5e5e5);
}
.artwork-detail__share-toggle {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-800);
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
    text-transform: none;
}
.artwork-detail__share-toggle::-webkit-details-marker {
    display: none;
}
.artwork-detail__share-toggle svg {
    flex-shrink: 0;
}
.artwork-detail__share-panel {
    display: none;
    margin-top: 0.8rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--grey-200, #e5e5e5);
    background: #fff;
    max-width: 340px;
}
.artwork-detail__share[open] .artwork-detail__share-panel {
    display: grid;
    gap: 0.6rem;
}
.artwork-detail__share-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-700);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.artwork-detail__share-item svg {
    flex-shrink: 0;
}
.artwork-detail__share-item:hover {
    color: var(--gold);
}
.artwork-detail__share-item--button {
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.artwork-detail__actions .btn,
.ar-viewer .btn {
    min-width: 180px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--black);
}

.btn--primary {
    background: linear-gradient(160deg, #cba55a 0%, #b8974a 50%, #a07c35 100%);
    color: var(--white);
    border: 1px solid #a07c35;
    box-shadow: 0 2px 0 #7a5c22, 0 4px 12px rgba(184,151,74,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    position: relative;
    transition: all 0.18s ease;
}

.btn--primary:hover {
    background: linear-gradient(160deg, #d4b468 0%, #c9a456 50%, #b08840 100%);
    color: var(--white);
    border-color: #8a6828;
    box-shadow: 0 3px 0 #6a4c18, 0 6px 18px rgba(184,151,74,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #7a5c22, 0 2px 6px rgba(184,151,74,0.25), inset 0 1px 0 rgba(0,0,0,0.1);
}

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

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.artwork-detail__description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--grey-700);
}

.artwork-detail__panel,
.artwork-detail__section--panel {
    border: none;
    background: transparent;
    padding: 0;
}

/* Accordion panels for description / provenance / literature */
.artwork-detail__accordion {
    border-bottom: 1px solid #e0e0e0;
    margin-top: 0;
}

.artwork-detail__section {
    border-bottom: 1px solid #e0e0e0;
    padding: var(--space-md) 0;
}
.artwork-detail__section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-900);
    margin-bottom: var(--space-sm);
}
.artwork-detail__section-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--grey-700);
}

.artwork-detail__accordion summary {
    list-style: none;
}

.artwork-detail__accordion summary::-webkit-details-marker {
    display: none;
}

.artwork-detail__accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.artwork-detail__accordion-title::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: #999;
    transition: transform 0.3s;
}

.artwork-detail__accordion[open] .artwork-detail__accordion-title::after {
    content: '−';
}

.artwork-detail__accordion-title:hover {
    color: #000;
}

.artwork-detail__accordion-body {
    padding: 0 0 1.25rem;
}


/* ---- Mosaic (kept for artwork detail) ---- */
.mosaic {
    padding: var(--space-2xl) 0;
    background: var(--grey-50);
}

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

.mosaic__label {
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: var(--space-xs);
}

.mosaic__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2rem;
}

.mosaic__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 4px;
    aspect-ratio: 16 / 10;
    max-width: 1200px;
    margin: 0 auto;
}

.mosaic__tile {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--grey-200);
}

.mosaic__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.mosaic__tile:hover img {
    opacity: 0.85;
}

.mosaic__tile--full { grid-column: 1 / 7; grid-row: 1 / 7; }
.mosaic__tile--detail-1 { grid-column: 7 / 10; grid-row: 1 / 4; }
.mosaic__tile--detail-2 { grid-column: 10 / 13; grid-row: 1 / 4; }
.mosaic__tile--detail-3 { grid-column: 7 / 10; grid-row: 4 / 7; }
.mosaic__tile--detail-4 { grid-column: 10 / 13; grid-row: 4 / 7; }

.mosaic__tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: var(--white);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.mosaic__tile:hover .mosaic__tile-label {
    opacity: 1;
}


/* ---- Immersive Banner (Sticky) ---- */
.immersive-banner {
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.875rem 0;
    transform: translateY(100%);
    opacity: 0;
    animation: immersiveBannerIn 0.6s var(--ease-out) 1.5s forwards;
}

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

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

.immersive-banner__text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.immersive-banner__icon {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.immersive-banner__label {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
}

.immersive-banner__desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    display: none;
}

@media (min-width: 768px) {
    .immersive-banner__desc { display: inline; }
}

.immersive-banner__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.625rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.immersive-banner__btn svg {
    width: 14px;
    height: 14px;
}

.immersive-banner__btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}


/* ---- Immersive Fullscreen ---- */
.immersive {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #050508;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.immersive.active {
    opacity: 1;
    pointer-events: all;
}

.immersive__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
    transition: background 0.15s ease;
}

.immersive__letterbox {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: #000;
    z-index: 10;
    transform: scaleY(0);
    transition: transform 0.8s ease 0.3s;
}

.immersive.active .immersive__letterbox {
    transform: scaleY(1);
}

.immersive__letterbox--top { top: 0; transform-origin: top; }
.immersive__letterbox--bottom { bottom: 0; transform-origin: bottom; }

.immersive__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    z-index: 20;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease 0.6s;
}

.immersive.active .immersive__header {
    opacity: 1;
    transform: translateY(0);
}

.immersive__artist {
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.25rem;
}

.immersive__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--white);
}

.immersive__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.immersive__close:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.immersive__close svg {
    width: 20px;
    height: 20px;
}

.immersive__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

.immersive__glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(180,160,120,0.08) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    transition: all 0.1s ease;
}

.immersive__frame {
    position: relative;
    max-width: 65vh;
    max-height: 75vh;
    transform-style: preserve-3d;
    transition: transform 0.08s ease-out;
    will-change: transform;
    cursor: crosshair;
}

.immersive.active .immersive__frame {
    animation: immersiveReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes immersiveReveal {
    0% { opacity: 0; transform: scale(0.7) rotateX(8deg) translateY(40px); filter: blur(8px) brightness(0.3); }
    40% { opacity: 1; filter: blur(2px) brightness(0.7); }
    70% { transform: scale(1.03) rotateX(-1deg) translateY(-5px); filter: blur(0) brightness(1.05); }
    100% { transform: scale(1) rotateX(0) translateY(0); filter: blur(0) brightness(1); }
}

.immersive__image {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.immersive__frame-3d {
    position: absolute;
    inset: -8px;
    border: 8px solid;
    border-image: linear-gradient(135deg, #5a4a38, #3a2e22, #2a1f16) 1;
    pointer-events: none;
    z-index: 3;
    transform-style: preserve-3d;
}

.immersive__frame-edge {
    position: absolute;
    background: linear-gradient(to bottom, #3a2e22, #1a1510);
    transform-origin: left top;
}

.immersive__frame-edge--right {
    top: 0; right: -12px; width: 12px; height: 100%;
    transform: rotateY(80deg);
    background: linear-gradient(to right, #2a1f16, #0a0806);
}

.immersive__frame-edge--bottom {
    bottom: -12px; left: 0; width: 100%; height: 12px;
    transform: rotateX(-80deg);
    background: linear-gradient(to bottom, #2a1f16, #0a0806);
}

.immersive__frame-edge--left {
    top: 0; left: -12px; width: 12px; height: 100%;
    transform: rotateY(-80deg);
    background: linear-gradient(to left, #3a2e22, #151010);
}

.immersive__frame-edge--top {
    top: -12px; left: 0; width: 100%; height: 12px;
    transform: rotateX(80deg);
    background: linear-gradient(to top, #3a2e22, #151010);
}

.immersive__spotlight {
    position: absolute;
    width: 140%; height: 160%; top: -80%; left: -20%;
    background: conic-gradient(from 180deg at 50% 0%, transparent 30%, rgba(255,248,230,0.03) 40%, rgba(255,248,230,0.06) 50%, rgba(255,248,230,0.03) 60%, transparent 70%);
    pointer-events: none; z-index: 1;
    opacity: 0; transition: opacity 0.8s ease 0.8s;
}

.immersive.active .immersive__spotlight { opacity: 1; }

.immersive__cast-shadow {
    position: absolute;
    bottom: -25%; left: 10%; right: 10%; height: 40%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0,0,0,0.5) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none; z-index: 0;
    transition: all 0.1s ease;
    transform-style: preserve-3d;
}

.immersive__texture {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 4; opacity: 0.08;
    mix-blend-mode: overlay;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255,255,255,0.03) 1px, rgba(255,255,255,0.03) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255,255,255,0.02) 1px, rgba(255,255,255,0.02) 2px);
    background-size: 3px 3px, 3px 3px;
    border-radius: 2px;
}

.immersive__specular {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 5;
    background: radial-gradient(ellipse at 35% 15%, rgba(255,252,240,0.12), transparent 40%);
    mix-blend-mode: screen;
    opacity: 0; transition: all 0.1s ease;
}

.immersive.active .immersive__specular { opacity: 1; }

.immersive__zoom-lens {
    position: absolute;
    width: 180px; height: 140px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    background-repeat: no-repeat;
    pointer-events: none; opacity: 0;
    transition: opacity 0.15s ease; z-index: 5;
}

.immersive__frame:hover .immersive__zoom-lens { opacity: 1; }

.immersive__depth {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 3;
    mix-blend-mode: soft-light;
    opacity: 0; transition: opacity 0.3s ease;
}

.immersive.active .immersive__depth { opacity: 1; }

.immersive__depth-highlight {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 50%);
    pointer-events: none; transition: all 0.08s ease;
}

.immersive__depth-shadow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 70%, rgba(0,0,0,0.15), transparent 50%);
    pointer-events: none; transition: all 0.08s ease;
}

.immersive__reflection {
    position: absolute;
    bottom: -40%; left: 5%; right: 5%; height: 40%;
    background: linear-gradient(to bottom, rgba(180,160,120,0.06), transparent 50%);
    transform: scaleY(-1) perspective(400px) rotateX(15deg);
    pointer-events: none; opacity: 0; filter: blur(3px);
    transition: opacity 0.6s ease 1s;
}

.immersive.active .immersive__reflection { opacity: 0.5; }

.immersive__particles {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
    mix-blend-mode: screen;
}

.immersive__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 2rem; z-index: 20;
    opacity: 0; transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}

.immersive.active .immersive__info {
    opacity: 1; transform: translateY(0);
}

.immersive__meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

.immersive__controls {
    display: flex;
    gap: 0.5rem;
}

.immersive__control-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%; cursor: pointer;
    transition: all 0.3s ease;
}

.immersive__control-btn:hover,
.immersive__control-btn.active {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.immersive__control-btn svg {
    width: 16px; height: 16px;
}


/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.lightbox__image {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
    transform: scale(0.95);
    transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active .lightbox__image {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: var(--space-md); right: var(--space-md);
    color: var(--white); font-size: 1.5rem; cursor: pointer;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: opacity var(--duration-fast);
}

.lightbox__close:hover {
    opacity: 0.6;
}

.lightbox__controls {
    position: absolute;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2002;
}

.lightbox__control-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.45);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity var(--duration-fast), border-color var(--duration-fast), background var(--duration-fast);
}

.lightbox__control-btn#lightboxZoomReset {
    width: 72px;
    font-size: 0.75rem;
}

.lightbox__control-btn:hover {
    opacity: 0.85;
    border-color: rgba(255,255,255,0.65);
    background: rgba(0,0,0,0.65);
}

.lightbox__control-btn[disabled] {
    opacity: 0.4;
    cursor: default;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity var(--duration-fast);
    background: none;
    border: none;
    padding: 0;
}

.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 0.6;
}

.lightbox--gallery .lightbox__prev,
.lightbox--gallery .lightbox__next {
    display: flex;
}

.lightbox__counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    opacity: 0.7;
    display: none;
}

.lightbox--gallery .lightbox__counter {
    display: block;
}

/* Loupe magnifying glass */
.lightbox__control-btn--loupe {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__control-btn--loupe.active {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
}
.lightbox__loupe-lens {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 0 20px rgba(0,0,0,0.6), inset 0 0 10px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
    z-index: 2005;
    background-repeat: no-repeat;
    transition: opacity 0.15s;
}
.lightbox__loupe-lens.active {
    opacity: 1;
}

/* Share button style */
.event-detail__share button.event-detail__share-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #555;
    transition: color 0.2s;
}
.event-detail__share button.event-detail__share-btn:hover {
    color: #c4a355;
}

/* Location link */
.event-detail__location-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.event-detail__location-link:hover {
    color: #c4a355;
}

/* ---- Gallery Detail Page (redesigned) ---- */

/* Hero */
.gallery-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--grey-900);
}
.gallery-hero__slides {
    position: absolute;
    inset: 0;
}
.gallery-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.gallery-hero__slide--active {
    opacity: 1;
}
.gallery-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.15) 50%, transparent 100%);
    z-index: 1;
}
.gallery-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 0 var(--space-3xl, 5rem);
    width: 100%;
}
.gallery-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-sm);
}
.gallery-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: var(--space-xs);
}
.gallery-hero__location {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}
.gallery-hero__dots {
    position: absolute;
    bottom: var(--space-lg, 2rem);
    right: var(--space-lg, 2rem);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.gallery-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.gallery-hero__dot--active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}
.gallery-hero__dot:hover {
    border-color: var(--white);
}

/* Info section */
.gallery-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl, 5rem);
    align-items: start;
}
.gallery-info__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg, 2rem);
}
.gallery-info__item {
    display: flex;
    gap: var(--space-md, 1.5rem);
    align-items: flex-start;
}
.gallery-info__icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.gallery-info__label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin: 0 0 4px;
    font-weight: 500;
}
.gallery-info__item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-800);
    margin: 0;
}
.gallery-info__item a {
    color: var(--grey-800);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--gold);
}
.gallery-info__item a:hover {
    color: var(--gold);
}
.gallery-info__description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-700);
}

/* Section titles */
.gallery-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--grey-900);
    margin-bottom: var(--space-lg);
}

/* Photo grid */
.gallery-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}
.gallery-photos__item {
    overflow: hidden;
    border-radius: 2px;
}
.gallery-photos__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.5s var(--ease-out), opacity 0.3s ease;
}
.gallery-photos__img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

/* Map */
.gallery-map {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--grey-200);
}

/* Other galleries */
.gallery-others {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.gallery-other {
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--grey-200);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.gallery-other:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.gallery-other--active {
    border-color: var(--gold);
}
.gallery-other__img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.gallery-other__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-other__info {
    padding: var(--space-md);
}
.gallery-other__city {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin: 0 0 4px;
}
.gallery-other__address {
    font-size: 0.82rem;
    color: var(--grey-600);
    margin: 0;
    line-height: 1.5;
}
.gallery-other__location {
    font-size: 0.75rem;
    color: var(--grey-500);
    margin: 4px 0 0;
}

@media (max-width: 1024px) {
    .gallery-others { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gallery-hero { min-height: 50vh; }
    .gallery-info { grid-template-columns: 1fr; gap: var(--space-xl); }
    .gallery-photos { grid-template-columns: repeat(2, 1fr); }
    .gallery-others { grid-template-columns: 1fr; }
    .gallery-hero__dots { right: var(--space-md); bottom: var(--space-md); }
}


/* ---- Scroll Animations ---- */
/* Active reveal styles are defined in the sell-art section below */


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

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

    .home-featured-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .artwork-detail__hero {
        grid-template-columns: 1fr;
    }

    .artwork-detail__gallery {
        min-height: 60vh;
    }

    .exhibition-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .event-index-row {
        grid-template-columns: 1fr;
    }

    .event-index-row__reveal-zone {
        max-height: none;
        opacity: 1;
        transform: none;
        margin-top: 0.9rem;
    }

    .mosaic__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .mosaic__tile--full { grid-column: 1 / 7; grid-row: 1 / 4; }
    .mosaic__tile--detail-1 { grid-column: 1 / 4; grid-row: 4 / 7; }
    .mosaic__tile--detail-2 { grid-column: 4 / 7; grid-row: 4 / 7; }
    .mosaic__tile--detail-3, .mosaic__tile--detail-4 { display: none; }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 1.75rem;
        --space-xl: 2.5rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    .nav__menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        z-index: 99999;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__menu .nav__link {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
        color: var(--black);
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__hamburger.active span {
        background: var(--black);
    }

    .nav__private-btn {
        display: none;
    }

    /* Hide account dropdown on mobile — account links are in the mobile menu */
    .nav__actions > .nav__dropdown {
        display: none;
    }

    .nav__mobile-profile {
        display: flex;
    }

    /* Dropdown in mobile — hidden by default, toggle on click */
    .nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background: transparent;
        padding: 0;
        min-width: auto;
        display: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .nav__dropdown-menu::before,
    .nav__dropdown-menu::after {
        display: none;
    }

    .nav__dropdown.is-open .nav__dropdown-menu {
        display: block;
    }

    .nav__dropdown {
        display: block;
    }

    .nav__dropdown-link {
        font-size: 0.875rem;
        color: var(--grey-600);
        padding: 0.375rem 0;
    }

    .hero__content {
        bottom: var(--space-lg);
    }

    /* Artworks grid */
    .artworks-grid {
        grid-template-columns: 1fr;
    }

    /* Exhibitions */
    .exhibitions-list {
        grid-template-columns: 1fr;
    }

    .home-featured-grid {
        gap: 1.2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .event-index-row {
        padding: 0.6rem;
    }

    .event-index-row__reveal-zone {
        grid-template-columns: 1fr;
    }

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

    /* Galleries */
    .galleries-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .newsletter__input-wrap {
        flex-direction: column;
    }

    .newsletter__submit {
        justify-content: center;
    }

    .artwork-detail__info {
        padding: var(--space-lg) var(--space-md);
    }

    .artwork-detail__actions {
        flex-direction: column;
    }

    .artwork-detail__fact-grid {
        grid-template-columns: 1fr;
    }

    /* Mosaic */
    .mosaic__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
    }

    .mosaic__tile--full { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 4/3; }
    .mosaic__tile--detail-1, .mosaic__tile--detail-2 { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
    .mosaic__tile--detail-3, .mosaic__tile--detail-4 { display: block; grid-column: auto; grid-row: auto; aspect-ratio: 1; }
}

@media (max-width: 480px) {
    .gallery-card {
        padding: var(--space-sm);
    }
}


/* ---- Loading / Page Transitions ---- */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease-out);
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.page-loader__logo svg {
    height: 24px;
    fill: var(--black);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


/* ---- Utility ---- */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}


/* ============================================================
   FRAMING PAGE
   ============================================================ */

/* Page Hero (reusable) */
.page-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--grey-600);
    max-width: 560px;
    line-height: 1.6;
}

/* Section grey bg */
.section--grey {
    background: var(--grey-50, #f8f8f8);
}

/* Framing Intro */
.framing-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.framing-intro__text p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey-600);
    margin-bottom: 1rem;
    max-width: 680px;
}

/* Frame Collection Grid */
.framing-collection__desc {
    font-size: 0.95rem;
    color: var(--grey-600);
    max-width: 560px;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.framing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.framing-card__image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--grey-100);
    overflow: hidden;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framing-card__placeholder {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
}

.framing-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.framing-card__desc {
    font-size: 0.8rem;
    color: var(--grey-500);
    line-height: 1.5;
}

/* AI Preview */
.framing-ai__desc {
    font-size: 1rem;
    color: var(--grey-600);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.framing-ai__workspace {
    margin-bottom: var(--space-lg);
}

.framing-ai__upload {
    border: 2px dashed var(--grey-300);
    border-radius: 4px;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.framing-ai__upload:hover,
.framing-ai__upload.dragover {
    border-color: var(--gold, #8B6914);
    background: rgba(139, 105, 20, 0.03);
}

.framing-ai__upload-inner svg {
    color: var(--grey-400);
    margin-bottom: 1rem;
}

.framing-ai__upload-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.framing-ai__upload-hint {
    font-size: 0.8rem;
    color: var(--grey-400);
}

.framing-ai__preview {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.framing-ai__canvas {
    position: relative;
    display: inline-block;
    max-width: 500px;
}

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

.framing-ai__frame-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: box-shadow 0.4s ease, border 0.4s ease;
}

.framing-ai__selector-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.framing-ai__options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.framing-ai__option {
    padding: 0.625rem 1.5rem;
    border: 1px solid var(--grey-300);
    background: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.framing-ai__option:hover {
    border-color: var(--black);
}

.framing-ai__option.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Room preview */
.framing-ai__rooms {
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.framing-ai__room-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--grey-300);
    background: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.framing-ai__room-btn:hover {
    border-color: var(--black);
}

.framing-ai__room-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.framing-ai__wall {
    width: 100%;
    min-height: 450px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.5s;
}

.framing-ai__wall[data-room="classic"] {
    background: linear-gradient(180deg, #d4c5a9 0%, #c2b393 60%, #8b7355 100%);
}

.framing-ai__wall[data-room="modern"] {
    background: linear-gradient(180deg, #e8e4e0 0%, #ddd8d3 100%);
}

.framing-ai__wall[data-room="gallery"] {
    background: #ffffff;
    border: 1px solid var(--grey-200);
}

.framing-ai__hung-artwork {
    max-width: 280px;
    max-height: 350px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.framing-ai__hung-artwork img {
    display: block;
    width: 100%;
    height: auto;
}

.framing-ai__cta-wrap {
    text-align: center;
    padding: var(--space-lg) 0;
}

.framing-ai__cta-wrap p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

    .framing-ai__options,
    .framing-ai__rooms {
        flex-wrap: wrap;
    }

    .framing-ai__wall {
        min-height: 300px;
    }

    .framing-ai__hung-artwork {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .framing-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   New pages — Services, About, Blog, Catalogues
   ============================================================ */

/* Services — Before/After placeholders */
.services-placeholder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    width: 100%;
}

.services-placeholder__item {
    aspect-ratio: 4 / 3;
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-placeholder__item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

/* Services — Enquiry form */
.services-enquiry {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.services-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 480px;
    margin: var(--space-md) auto 0;
    text-align: left;
}

.services-form .newsletter__input {
    border: 1px solid var(--grey-300);
    border-right: 1px solid var(--grey-300);
}

.services-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.services-form .btn {
    align-self: stretch;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* About — Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.timeline__item {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--grey-200);
}

.timeline__year {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.timeline__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-600);
}

/* About — Archive section */
.archive-section {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* Blog — Category filters */
.blog-categories {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.blog-categories__btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
}

/* Catalogues — action links */
.catalogue-actions {
    margin-top: var(--space-xs);
}

/* Exhibition item image-wrap centered text for placeholders */
.exhibition-item__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
    }

    .services-placeholder {
        grid-template-columns: 1fr;
    }
}

/* Artwork detail thumbnails */
.artwork-detail__thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
}
.artwork-detail__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}
.artwork-detail__thumb.active,
.artwork-detail__thumb:hover {
    opacity: 1;
    border-color: #333;
}
.artwork-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Artwork detail sections */
.artwork-detail__section {
    margin-top: 24px;
}
.artwork-detail__section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.artwork-detail__html-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}
.artwork-detail__html-content a {
    color: #333;
    text-decoration: underline;
}
.artwork-detail__html-content a:hover {
    color: #000;
}
.artwork-detail__html-content p {
    margin-bottom: 8px;
}

/* Legal content (Privacy, Terms) */
.legal-content {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #444;
}
.legal-content h2 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
}
.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0 0.75rem;
}
.legal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}
.legal-content p {
    margin-bottom: 1rem;
}
.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.legal-content ul {
    list-style-type: disc;
}
.legal-content ol {
    list-style-type: decimal;
}
.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.legal-content li ul,
.legal-content li ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.legal-content a {
    color: var(--gold, #b8974a);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover {
    color: #1a1a1a;
}
.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.88rem;
}
.legal-content th,
.legal-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    text-align: left;
}
.legal-content th {
    background: #f8f7f5;
    font-weight: 600;
    color: #1a1a1a;
}
.legal-content blockquote {
    border-left: 3px solid var(--gold, #b8974a);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

/* ============================================================
   AR Viewer — "View in Your Room"
   ============================================================ */
.ar-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ar-banner__inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ar-banner__icon {
    width: 28px;
    height: 28px;
    stroke: white;
    flex-shrink: 0;
    display: none;
}
.ar-banner__text {
    flex: 1;
    min-width: 0;
    color: white;
}
.ar-banner__text strong {
    display: block;
    font-size: 13px;
    white-space: nowrap;
}
.ar-banner__text span {
    display: none;
}
.ar-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.ar-banner__btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 13px;
}
@media (min-width: 480px) {
    .ar-banner__icon { display: block; }
    .ar-banner__text span { display: block; font-size: 11px; opacity: 0.7; }
}

/* AR Overlay (camera fallback) */
.ar-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
}
.ar-overlay__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ar-overlay__artwork {
    position: absolute;
    touch-action: none;
    cursor: grab;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ar-overlay__close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ar-overlay__frames {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10001;
}
.ar-overlay__frame-select {
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    -webkit-appearance: none;
    appearance: none;
}
.ar-overlay__artwork-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ar-overlay__artwork-wrap .ar-overlay__artwork {
    pointer-events: auto;
}
.ar-overlay__hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10001;
    white-space: nowrap;
    animation: arFadeOut 3s 2s forwards;
}
@keyframes arFadeOut {
    to { opacity: 0; pointer-events: none; }
}

/* Frame styles */
.ar-frame--gold {
    border: 5px solid #c5a55a;
    box-shadow: inset 0 0 0 2px #8b7335, 0 8px 32px rgba(0,0,0,0.4);
}
.ar-frame--dark-wood {
    border: 6px solid #3d2b1f;
    box-shadow: inset 0 0 0 2px #2a1a10, 0 8px 32px rgba(0,0,0,0.4);
}
.ar-frame--white {
    border: 4px solid #f0f0f0;
    box-shadow: inset 0 0 0 1px #ddd, 0 8px 32px rgba(0,0,0,0.4);
}

/* Desktop: hide AR banner */
@media (min-width: 1024px) {
    .ar-banner {
        display: none;
    }
}

/* ---- Event Show Pages (Exhibition / Fair) ---- */
.event-cover {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.event-cover__image {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

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

.event-info__location {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 0.75rem;
}

.event-info__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.event-info__dates {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.event-info__description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

.event-section__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.event-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 2rem;
}

.event-category-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #d6d6d6;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 0.8rem;
    transition: all 0.2s ease;
}

.event-category-nav__link span {
    color: #8a8a8a;
}

.event-category-nav__link:hover {
    border-color: #111;
    color: #111;
}

.event-artwork-group {
    margin-bottom: 3.25rem;
}

.event-artwork-group__title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 1.25rem;
}

/* ── Horizontal scroll for fair / exhibition artworks ── */
.event-artworks-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold, #C9A96E) transparent;
}
.event-artworks-grid::-webkit-scrollbar { height: 4px; }
.event-artworks-grid::-webkit-scrollbar-thumb { background: var(--gold, #C9A96E); border-radius: 2px; }
.event-artworks-grid::-webkit-scrollbar-track { background: transparent; }

.event-artworks-grid .card-artwork {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin-bottom: 0;
}

.event-artworks-grid .card-artwork__image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--grey-50, #fafafa);
}

.event-artworks-grid .card-artwork__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .event-artworks-grid .card-artwork { flex: 0 0 240px; }
}
@media (max-width: 600px) {
    .event-artworks-grid .card-artwork { flex: 0 0 200px; }
}

.event-detail__catalogue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.event-detail__catalogue-link--ghost {
    opacity: 0.72;
}

/* Inline Catalogue Viewer */
.catalogue-inline {
    background: #fff;
    padding: 3rem 0 4rem;
}

.catalogue-inline__viewer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.catalogue-inline__viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.catalogue-inline__actions {
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .catalogue-inline__viewer {
        aspect-ratio: 3 / 4;
        border-radius: 6px;
    }
}

/* ── Editorial Sections ─────────────────────────────── */
.editorial-sections {
    padding: 4rem 0;
}
.editorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.editorial-block:last-child {
    margin-bottom: 0;
}
.editorial-block--image-right .editorial-block__image {
    order: 2;
}
.editorial-block--image-right .editorial-block__text {
    order: 1;
}
.editorial-block__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}
.editorial-block__title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: .01em;
}
.editorial-block__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}
.editorial-block__desc p {
    margin: 0 0 1em;
}
.editorial-block__desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .editorial-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .editorial-block--image-right .editorial-block__image,
    .editorial-block--image-right .editorial-block__text {
        order: unset;
    }
    .editorial-block__title {
        font-size: 1.4rem;
    }
}

.home-mixed {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: start;
}

.home-mixed__shots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1rem;
}

.home-mixed__shot {
    overflow: hidden;
    min-height: 200px;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.home-mixed__shot:hover {
    transform: scale(1.015);
}

.home-mixed__shot--hero {
    grid-column: span 2;
    min-height: 320px;
}

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

.home-mixed__products {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.home-mixed__products .card-artwork__image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--grey-50, #fafafa);
}

.home-mixed__products .card-artwork__image {
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .home-mixed {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   Exhibit Card — Premium hero + artwork carousel
   ══════════════════════════════════════════════ */
.exhibit-card {
    margin-bottom: 3.5rem;
}

.exhibit-card__hero {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    text-decoration: none;
    color: #fff;
}

.exhibit-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibit-card__hero:hover .exhibit-card__image {
    transform: scale(1.04);
}

.exhibit-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
    pointer-events: none;
}

.exhibit-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 3rem;
    z-index: 1;
}

.exhibit-card__badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #fff;
    color: #111;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.exhibit-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    color: #fff;
}

.exhibit-card__location {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    margin: 0 0 0.2rem;
}

.exhibit-card__dates {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 1rem;
}

.exhibit-card__cta {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.exhibit-card__hero:hover .exhibit-card__cta {
    border-color: #fff;
}

/* Artwork carousel below the hero card */
.exhibit-card__carousel {
    position: relative;
    margin-top: 1.25rem;
    overflow-x: auto;
    cursor: grab;
}
.exhibit-card__carousel.is-dragging { cursor: grabbing; }

.exhibit-card__carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.exhibit-card__artwork {
    flex: 0 0 200px;
    text-decoration: none;
    color: inherit;
}

.exhibit-card__artwork-img {
    overflow: hidden;
    margin-bottom: 0.5rem;
    aspect-ratio: 3 / 4;
    background: #f5f5f3;
}

.exhibit-card__artwork-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibit-card__artwork:hover .exhibit-card__artwork-img img {
    transform: scale(1.05);
}

.exhibit-card__artwork-artist {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 0.15rem;
}

.exhibit-card__artwork-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* ── Compact grid for past exhibitions/fairs ── */
.exhibit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exhibit-grid__item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.exhibit-grid__item:hover {
    transform: translateY(-4px);
}

.exhibit-grid__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--grey-50, #fafaf8);
}

.exhibit-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibit-grid__item:hover .exhibit-grid__image {
    transform: scale(1.05);
}

.exhibit-grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exhibit-grid__item:hover .exhibit-grid__overlay {
    opacity: 1;
}

.exhibit-grid__info {
    padding: 0.75rem 0;
}

.exhibit-grid__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 0.25rem;
    color: #111;
}

.exhibit-grid__location {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 0.15rem;
}

.exhibit-grid__dates {
    font-size: 0.65rem;
    color: #aaa;
    margin: 0;
}

@media (max-width: 768px) {
    .exhibit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .exhibit-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Cinematic strip (exhibitions/fairs without artworks) ── */
.exhibit-strip {
    margin-top: 1.5rem;
    overflow: hidden;
}

.exhibit-strip__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
}

.exhibit-strip__track::-webkit-scrollbar {
    display: none;
}

.exhibit-strip__item {
    flex: 0 0 320px;
    text-decoration: none;
    color: inherit;
}

.exhibit-strip__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.exhibit-strip__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibit-strip__item:hover .exhibit-strip__img img {
    transform: scale(1.05);
}

.exhibit-strip__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 60%);
    pointer-events: none;
}

.exhibit-strip__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    z-index: 1;
}

.exhibit-strip__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.2rem;
    line-height: 1.25;
}

.exhibit-strip__location {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .exhibit-card__hero {
        aspect-ratio: 16 / 10;
    }

    .exhibit-card__content {
        padding: 1.5rem 2rem;
    }

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

    .exhibit-card__artwork {
        flex: 0 0 160px;
    }

    .exhibit-strip__item {
        flex: 0 0 260px;
    }

    .home-featured-grid--few .card-artwork {
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .exhibit-card__hero {
        aspect-ratio: 4 / 3;
    }

    .exhibit-card__content {
        padding: 1.25rem 1.5rem;
    }

    .exhibit-card__title {
        font-size: 1.25rem;
    }

    .exhibit-card__artwork {
        flex: 0 0 140px;
    }

    .exhibit-strip__item {
        flex: 0 0 220px;
    }

    .home-featured-grid--few .card-artwork {
        max-width: 100%;
    }
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.event-gallery__item {
    overflow: hidden;
}

.event-gallery__image {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.event-gallery__item:hover .event-gallery__image {
    transform: scale(1.02);
}

.event-artworks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.event-artworks__item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-artworks__image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--grey-50, #fafafa);
    margin-bottom: 0.75rem;
}

.event-artworks__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-artworks__item:hover .event-artworks__image {
    transform: scale(1.05);
}

.event-artworks__artist {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 0.25rem;
}

.event-artworks__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}

/* ============================================
   EVENT HERO — Exhibition/Fair show pages
   ============================================ */
.event-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}
.event-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}
.event-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}
.event-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}
.event-hero__dates {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .event-hero { height: 50vh; min-height: 300px; }
    .event-hero__title { font-size: 2rem; }
    .event-hero__content { padding: 30px 20px; }
}

/* ============================================
   EVENT DETAIL — Two-column layout
   ============================================ */
.event-detail {
    display: flex;
    gap: 60px;
    padding: 60px 0;
}
.event-detail__sidebar {
    flex: 0 0 30%;
    min-width: 200px;
}
.event-detail__main {
    flex: 1;
}
.event-detail__block {
    margin-bottom: 28px;
}
.event-detail__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    margin: 0 0 6px;
}
.event-detail__block p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}
.event-detail__share {
    display: flex;
    gap: 16px;
}
.event-detail__share a {
    color: #555;
    transition: color 0.2s;
}
.event-detail__share a:hover {
    color: #c4a355;
}
.event-detail__description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}
@media (max-width: 768px) {
    .event-detail { flex-direction: column; gap: 30px; padding: 30px 0; }
    .event-detail__sidebar { flex: none; }
}

/* ============================================
   MASONRY GALLERY — Pure CSS masonry
   ============================================ */
.masonry-gallery {
    column-count: 3;
    column-gap: 16px;
}
.masonry-gallery__item {
    break-inside: avoid;
    margin-bottom: 16px;
}
.masonry-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .masonry-gallery { column-count: 2; }
}
@media (max-width: 768px) {
    .masonry-gallery { column-count: 1; }
}

/* ============================================
   INSTALLATION CAROUSEL — Continuous rows
   ============================================ */
.install-carousel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    min-height: 240px;
}
.install-carousel__loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: rgba(245, 245, 245, 0.9);
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    z-index: 2;
}
.install-carousel.is-loading .install-carousel__loading {
    display: flex;
}
.install-carousel__spinner {
    width: 28px;
    height: 28px;
    border: 2px solid #d7d7d7;
    border-top-color: #1a1a1a;
    border-radius: 999px;
    animation: install-spin .8s linear infinite;
}
.install-carousel.is-loading .install-carousel__row {
    visibility: hidden;
}
.install-carousel__row {
    overflow: hidden;
    position: relative;
}
.install-carousel__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.install-carousel.is-ready.is-active .install-carousel__track.is-marquee {
    animation: install-scroll 180s linear infinite;
    animation-play-state: running;
}
.install-carousel__row--reverse .install-carousel__track.is-marquee {
    animation-direction: reverse;
}
.install-carousel__track--static {
    animation: none !important;
    justify-content: center;
}
.install-carousel__item {
    flex: 0 0 clamp(180px, 16vw, 280px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    contain: layout paint style;
    border-radius: 4px;
}
/* Dynamic sizing — vary dimensions for visual rhythm */
.install-carousel__item:nth-child(3n+1) {
    flex-basis: clamp(220px, 20vw, 340px);
    aspect-ratio: 16 / 10;
}
.install-carousel__item:nth-child(3n+2) {
    flex-basis: clamp(160px, 14vw, 240px);
    aspect-ratio: 3 / 4;
}
.install-carousel__item:nth-child(5n) {
    flex-basis: clamp(260px, 22vw, 380px);
    aspect-ratio: 16 / 9;
}
.install-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
}

@keyframes install-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes install-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .install-carousel__item {
        flex-basis: clamp(170px, 22vw, 240px);
    }
    .install-carousel__item:nth-child(3n+1) {
        flex-basis: clamp(200px, 26vw, 300px);
    }
    .install-carousel__item:nth-child(3n+2) {
        flex-basis: clamp(140px, 18vw, 200px);
    }
    .install-carousel__item:nth-child(5n) {
        flex-basis: clamp(220px, 28vw, 320px);
    }
}

@media (max-width: 768px) {
    .install-carousel {
        gap: 10px;
        min-height: 160px;
    }

    /* Mobile: native horizontal swipe scrolling instead of the auto-marquee. */
    .install-carousel.is-native .install-carousel__row {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    .install-carousel.is-native .install-carousel__row::-webkit-scrollbar {
        display: none;
    }
    .install-carousel.is-native .install-carousel__track {
        animation: none !important;
        transform: none !important;
    }
    .install-carousel.is-native .install-carousel__item {
        scroll-snap-align: start;
    }

    /* Keep every row visible on mobile so no installation shots are hidden
       (rows are distributed by index, so hiding a row dropped ~1/3 of shots). */
    .install-carousel__track {
        gap: 10px;
    }
    /* Match the desktop animation timing so the scroll speed is consistent
       across devices. */
    .install-carousel.is-ready.is-active .install-carousel__track.is-marquee {
        animation-duration: 180s;
    }
    .install-carousel__row--reverse .install-carousel__track.is-marquee {
        animation-direction: reverse;
    }
    .install-carousel__item {
        flex-basis: clamp(140px, 38vw, 200px);
    }
    .install-carousel__item:nth-child(3n+1) {
        flex-basis: clamp(160px, 42vw, 240px);
    }
    .install-carousel__item:nth-child(3n+2) {
        flex-basis: clamp(120px, 32vw, 170px);
    }
    .install-carousel__item:nth-child(5n) {
        flex-basis: clamp(180px, 46vw, 260px);
    }
}

/* ============================================
   ARTWORKS GRID — For exhibition/fair works
   ============================================ */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.card-artwork__year {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin: 2px 0 0;
}

/* ============================================
   ARTWORK MOSAIC — Single image crop grid
   ============================================ */
.artwork-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px;
}
.artwork-mosaic__tile {
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.artwork-mosaic__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.artwork-mosaic__tile:hover img {
    transform: scale(1.04);
}

/* A: hero — spans 2 rows, left column */
.artwork-mosaic__tile--hero {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
}
.artwork-mosaic__tile--hero img {
    transform-origin: center center;
}

/* B: portrait — right column, row 1 */
.artwork-mosaic__tile--portrait {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 3/4;
}

/* C: square — right column, row 2 */
.artwork-mosaic__tile:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1;
}

/* D: square — left column, row 3 */
.artwork-mosaic__tile:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 4/3;
}

/* E: wide panoramic — right column, row 3 */
.artwork-mosaic__tile--wide {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .artwork-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .artwork-mosaic__tile--hero {
        grid-column: 1 / -1;
        grid-row: 1;
        aspect-ratio: 16/9;
    }
    .artwork-mosaic__tile--portrait {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 1;
    }
    .artwork-mosaic__tile:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .artwork-mosaic__tile:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    .artwork-mosaic__tile--wide {
        grid-column: 2;
        grid-row: 3;
        aspect-ratio: 1;
    }
}

/* ============================================
   FACTSHEET MODAL
   ============================================ */
.factsheet-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.factsheet-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.factsheet-modal__content {
    position: relative;
    background: #fff;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    z-index: 1;
}
.factsheet-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}
.factsheet-modal__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 8px;
}
.factsheet-modal__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 24px;
}
.factsheet-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.factsheet-modal__input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d4d0c8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}
.factsheet-modal__input--full {
    margin-bottom: 12px;
}

select.factsheet-modal__input {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #444 50%), linear-gradient(135deg, #444 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 1px), calc(100% - 11px) calc(50% - 1px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.1rem;
}

/* ============================================
   READ STORY MODAL — Full-screen factsheet preview
   ============================================ */
.read-story-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-story-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
}

.read-story-modal__panel {
    position: relative;
    width: 92vw;
    height: 90vh;
    max-width: 960px;
    background: #fff;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.read-story-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.read-story-modal__close:hover {
    background: #e0e0e0;
}

.read-story-modal__frame {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
}

/* ============================================
   DEPT ROW — Artist name for drawings
   ============================================ */
.dept-row__item-artist {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin: 6px 0 2px;
}

/* Past exhibition/fair label */
.exhibitions__label--past {
    background: rgba(120, 120, 120, 0.85);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 2px;
}

/* Catalogue link */
.event-detail__catalogue-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.event-detail__catalogue-link:hover {
    color: #b8860b;
}

/* ============================================
   EVENT HERO — Exhibition/Fair Cards (Homepage)
   ============================================ */
.home-event-hero {
    margin-bottom: 64px;
    overflow: hidden;
    background: transparent;
}

.home-event-hero__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-event-hero__image {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.home-event-hero__link:hover .home-event-hero__image {
    transform: scale(1.02);
}

.home-event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 56px 48px;
    text-align: left;
}

.home-event-hero__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.home-event-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.home-event-hero__location {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin: 0 0 4px;
}

.home-event-hero__dates {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Past events — subtle desaturation */
.home-event-hero--past .home-event-hero__image {
    filter: saturate(0.75) brightness(0.97);
}

.home-event-hero--past .home-event-hero__overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 45%, rgba(0,0,0,0.5) 100%);
}

/* Artwork thumbnails strip */
/* Install shots slideshow background */
.home-event-hero__slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-event-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.home-event-hero__slide--active {
    opacity: 1;
}

.home-event-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Desktop: larger hero, bigger artwork thumbs */
@media (min-width: 768px) {
    .home-event-hero__image {
        height: 520px;
    }

    .home-event-hero__title {
        font-size: 48px;
    }

}

@media (min-width: 1200px) {
    .home-event-hero__image {
        height: 600px;
    }

    .home-event-hero__title {
        font-size: 56px;
    }

    .home-event-hero__overlay {
        padding: 72px 64px;
    }
}

/* ============================================
   MINI CART DRAWER
   ============================================ */
.mini-cart {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}
.mini-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity .25s ease;
}
.mini-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
}
.mini-cart.is-open {
    pointer-events: auto;
}
.mini-cart.is-open .mini-cart__backdrop {
    opacity: 1;
}
.mini-cart.is-open .mini-cart__panel {
    transform: translateX(0);
}
.mini-cart__close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #333;
    cursor: pointer;
}
.mini-cart__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    margin: 8px 0 16px;
}
.mini-cart__notice {
    margin: 0 0 14px;
    padding: 10px 12px;
    background: #f0f7f0;
    color: #2d5a2d;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}
.mini-cart__items {
    flex: 1;
    overflow: auto;
    border-top: 1px solid #ece8df;
    border-bottom: 1px solid #ece8df;
    padding: 10px 0;
}
.mini-cart__item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}
.mini-cart__thumb {
    width: 68px;
    height: 68px;
    background: #f5f3ef;
    flex-shrink: 0;
}
.mini-cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mini-cart__artist,
.mini-cart__name,
.mini-cart__price,
.mini-cart__more,
.mini-cart__empty,
.mini-cart__total {
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.mini-cart__artist {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7b7b7b;
}
.mini-cart__name {
    font-size: 14px;
    color: #1a1a1a;
    margin-top: 3px;
}
.mini-cart__price {
    font-size: 13px;
    color: #4d4d4d;
    margin-top: 4px;
}
.mini-cart__more,
.mini-cart__empty {
    font-size: 13px;
    color: #767676;
    padding: 8px 0;
}
.mini-cart__footer {
    padding-top: 14px;
}
.mini-cart__total {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.mini-cart__actions {
    display: flex;
    gap: 8px;
}
.mini-cart__actions .btn {
    flex: 1;
    text-align: center;
}


/* ============================================================
   STORIES — Editorial / Magazine Section
   ============================================================ */

/* ---- Stories Hero (Index page header) ---- */
.stories-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-xl);
    text-align: center;
}
.stories-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.stories-hero__subtitle {
    font-size: 1rem;
    color: var(--grey-600);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Category Navigation ---- */
.stories-nav {
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: var(--space-xl);
}
.stories-nav__list {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--space-sm) 0;
}
.stories-nav__link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--duration-fast), border-color var(--duration-fast);
}
.stories-nav__link:hover {
    color: var(--grey-900);
}
.stories-nav__link--active {
    color: var(--grey-900);
    border-bottom-color: var(--grey-900);
}

/* ---- Featured Story (Hero card) ---- */
.stories-featured {
    margin-bottom: var(--space-2xl);
}
.stories-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
    overflow: hidden;
    background: var(--grey-50);
}
.stories-featured__image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.stories-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.stories-featured__card:hover .stories-featured__image img {
    transform: scale(1.03);
}
.stories-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) var(--space-xl);
}
.stories-featured__category {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: var(--space-sm);
}
.stories-featured__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}
.stories-featured__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-600);
    margin-bottom: var(--space-md);
}
.stories-featured__meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: flex;
    gap: var(--space-sm);
}
.stories-featured__meta span::after {
    content: '·';
    margin-left: var(--space-sm);
}
.stories-featured__meta time::after {
    display: none;
}

@media (max-width: 768px) {
    .stories-featured__card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .stories-featured__image {
        min-height: 280px;
        max-height: 360px;
    }
    .stories-featured__content {
        padding: var(--space-lg) var(--space-md);
    }
}

/* ---- Stories Grid ---- */
.stories-grid-section {
    padding-bottom: var(--space-2xl);
}
.stories-grid-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
}
.stories-grid-section__empty {
    text-align: center;
    color: var(--grey-500);
    padding: var(--space-2xl) 0;
    font-size: 1rem;
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg) var(--space-md);
}
.stories-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* ---- Story Card ---- */
.story-card {
    display: block;
}
.story-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--grey-100);
    margin-bottom: var(--space-sm);
}
.story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.story-card:hover .story-card__image img {
    transform: scale(1.04);
}
.story-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--grey-100);
}
.story-card__body {
    padding-top: 0.25rem;
}
.story-card__category {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: block;
    margin-bottom: 0.25rem;
}
.story-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.375rem;
    transition: color var(--duration-fast);
}
.story-card:hover .story-card__title {
    color: var(--grey-600);
}
.story-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--grey-600);
    margin-bottom: 0.5rem;
}
.story-card__meta {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: flex;
    gap: 0.5rem;
}
.story-card__meta span::after {
    content: '·';
    margin-left: 0.5rem;
}
.story-card__meta time::after {
    display: none;
}

/* ---- Stories Pagination ---- */
.stories-pagination {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
}
.stories-pagination nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.stories-pagination nav > div:first-child {
    display: none;
}
.stories-pagination a,
.stories-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    transition: background var(--duration-fast);
}
.stories-pagination a:hover {
    background: var(--grey-100);
}
.stories-pagination span[aria-current="page"] span {
    background: var(--grey-900);
    color: var(--white);
}

/* ---- Artworks Pagination (reuses the stories pagination styling) ---- */
.artworks-pagination {
    margin-top: var(--space-2xl, 4rem);
    margin-bottom: var(--space-md, 1rem);
    display: flex;
    justify-content: center;
}
.artworks-pagination nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}
.artworks-pagination nav > div:first-child {
    display: none;
}
.artworks-pagination a,
.artworks-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: var(--grey-700, #555);
    transition: background var(--duration-fast, 0.2s), color var(--duration-fast, 0.2s);
}
.artworks-pagination a:hover {
    background: var(--grey-100, #f2f2f2);
    color: var(--grey-900, #1a1a1a);
}
.artworks-pagination span[aria-current="page"] span {
    background: var(--grey-900, #1a1a1a);
    color: var(--white, #fff);
}

/* ============================================================
   STORY ARTICLE — Single article page
   ============================================================ */

/* Hero cover */
.story-article__hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    max-height: 720px;
    overflow: hidden;
}
.story-article__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-article__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
}

@media (max-width: 768px) {
    .story-article__hero {
        height: 50vh;
        min-height: 280px;
    }
}

/* Article header */
.story-article__header {
    padding: var(--space-2xl) 0 var(--space-lg);
    text-align: center;
}
.story-article__category {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: inline-block;
    margin-bottom: var(--space-sm);
    transition: color var(--duration-fast);
}
.story-article__category:hover {
    color: var(--grey-900);
}
.story-article__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto var(--space-sm);
    letter-spacing: -0.01em;
}
.story-article__subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--grey-600);
    max-width: 640px;
    margin: 0 auto var(--space-md);
}
.story-article__meta {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}
.story-article__author::after {
    content: '—';
    margin-left: var(--space-sm);
}

/* Article body */
.container--article {
    max-width: 720px;
}
.story-article__body {
    padding-bottom: var(--space-xl);
}

/* Prose — editorial rich text styling */
.story-prose {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--grey-800);
}
.story-prose > * + * {
    margin-top: 1.5em;
}
.story-prose h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    margin-top: 2.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    color: var(--grey-900);
}
.story-prose h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-top: 2em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    color: var(--grey-900);
}
.story-prose p {
    margin-bottom: 0;
}
.story-prose a {
    color: var(--grey-900);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--grey-300);
    transition: text-decoration-color var(--duration-fast);
}
.story-prose a:hover {
    text-decoration-color: var(--grey-900);
}
.story-prose strong {
    font-weight: 600;
    color: var(--grey-900);
}
.story-prose em {
    font-style: italic;
}
.story-prose blockquote {
    position: relative;
    margin: 2.5em 0;
    padding: 1.5em 0 1.5em 2em;
    border-left: 3px solid var(--grey-200);
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--grey-700);
    font-style: italic;
}
.story-prose blockquote p {
    margin: 0;
}
.story-prose ul,
.story-prose ol {
    padding-left: 1.5em;
    margin: 1.5em 0;
}
.story-prose ul {
    list-style: disc;
}
.story-prose ol {
    list-style: decimal;
}
.story-prose li {
    margin-bottom: 0.5em;
}
.story-prose li::marker {
    color: var(--grey-400);
}
.story-prose img {
    width: 100%;
    height: auto;
    margin: 2em 0;
}
.story-prose figure {
    margin: 2.5em 0;
}
.story-prose figure img {
    margin: 0;
}
.story-prose figcaption {
    margin-top: 0.75em;
    font-size: 0.8125rem;
    color: var(--grey-500);
    text-align: center;
}
.story-prose hr {
    border: none;
    border-top: 1px solid var(--grey-200);
    margin: 3em 0;
}

/* Tags */
.story-article__tags {
    padding-bottom: var(--space-lg);
}
.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.story-tag {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border: 1px solid var(--grey-300);
    color: var(--grey-600);
}

/* Share */
.story-article__share {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: var(--space-xl);
}
.story-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.story-share__label {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.story-share a {
    color: var(--grey-500);
    transition: color var(--duration-fast);
}
.story-share a:hover {
    color: var(--grey-900);
}

/* ---- Related Sections ---- */
.story-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* Related Artworks */
.story-artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-lg) var(--space-md);
}
.story-artworks-grid .card-artwork {
    width: 100%;
}

/* Related Events */
.story-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}
.story-event-card {
    display: block;
    overflow: hidden;
    background: var(--white);
}
.story-event-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--grey-100);
}
.story-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.story-event-card:hover .story-event-card__image img {
    transform: scale(1.04);
}
.story-event-card__body {
    padding: var(--space-md) 0 0;
}
.story-event-card__type {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
    display: block;
    margin-bottom: 0.25rem;
}
.story-event-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    transition: color var(--duration-fast);
}
.story-event-card:hover .story-event-card__title {
    color: var(--grey-600);
}
.story-event-card__location {
    font-size: 0.8125rem;
    color: var(--grey-500);
}


/* ═══════════════════════════════════════════
   ABOUT — MILESTONES TIMELINE
   ═══════════════════════════════════════════ */

.milestones-intro {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--grey-500);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

/* Milestones nav */
.milestones-nav,
.notable-sales-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}
.milestones-nav__link,
.notable-sales-nav__link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--grey-500);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all var(--duration-fast);
    cursor: pointer;
}
.milestones-nav__link:hover,
.milestones-nav__link.active,
.notable-sales-nav__link:hover,
.notable-sales-nav__link.active {
    color: var(--gold);
    border-color: var(--gold);
}

/* Section header */
.milestones-section {
    margin-bottom: var(--space-3xl);
}
.milestones-section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.milestones-section__rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto var(--space-sm);
}
.milestones-section__title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--grey-900);
    margin-bottom: 0.25rem;
}
.milestones-section__years {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.milestones-section__tagline {
    font-size: 0.95rem;
    color: var(--grey-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Milestones grid — alternating layout */
.milestones-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}
.milestone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.milestone--right .milestone__image-wrap {
    order: 2;
}
.milestone--right .milestone__content {
    order: 1;
    text-align: right;
}
.milestone--right .milestone__badge {
    justify-content: flex-end;
}

/* Image */
.milestone__image-wrap {
    position: relative;
    overflow: hidden;
}
.milestone__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.milestone:hover .milestone__image {
    transform: scale(1.03);
}
.milestone__map {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #141414;
    border-radius: 2px;
}
.milestone__caption {
    font-size: 0.75rem;
    color: var(--grey-500);
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Content */
.milestone__badge {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
}
.milestone__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    opacity: 0.35;
}
.milestone__date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.06em;
}
.milestone__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.milestone__text {
    font-size: 0.95rem;
    color: var(--grey-600);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .milestone {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .milestone--right .milestone__image-wrap,
    .milestone--right .milestone__content {
        order: unset;
    }
    .milestone--right .milestone__content {
        text-align: left;
    }
    .milestone--right .milestone__badge {
        justify-content: flex-start;
    }
    .milestones-section__title {
        font-size: 1.75rem;
    }
    .milestone__number {
        font-size: 2.5rem;
    }
    .milestone__title {
        font-size: 1.35rem;
    }
    .milestones-nav,
    .notable-sales-nav {
        gap: var(--space-xs);
    }
    .milestones-nav__link,
    .notable-sales-nav__link {
        font-size: 0.95rem;
        padding: 0.35rem 0.75rem;
    }
}


/* ═══════════════════════════════════════════
   ABOUT — NOTABLE SALES
   ═══════════════════════════════════════════ */

.notable-sales-intro {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--grey-500);
    margin-bottom: var(--space-lg);
}

/* Counts bar */
.notable-sales-counts {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}
.notable-sales-counts__item {
    text-align: center;
}
.notable-sales-counts__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.notable-sales-counts__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-500);
}

/* Section blocks */
.notable-sales-section {
    margin-bottom: var(--space-3xl);
}
.notable-sales-section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--grey-200);
}
.notable-sales-section__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--grey-900);
    margin-bottom: 0.25rem;
}
.notable-sales-section__tagline {
    font-size: 0.875rem;
    color: var(--grey-500);
}

/* Card grid */
.notable-sales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* Sale card */
.sale-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    transition: box-shadow var(--duration-fast), transform var(--duration-fast);
    overflow: hidden;
}
.sale-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.sale-card__image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--grey-50);
    aspect-ratio: 3 / 4;
}
.sale-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.sale-card:hover .sale-card__image {
    transform: scale(1.04);
}
.sale-card__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}
.sale-card__artist {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 0;
    line-height: 1.3;
}
.sale-card__dates {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--grey-400);
    margin-bottom: 0.35rem;
}
.sale-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: var(--grey-700);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.sale-card__medium {
    font-size: 0.7rem;
    color: var(--grey-400);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}
.sale-card__museum {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .notable-sales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .notable-sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    .notable-sales-counts {
        gap: var(--space-md);
    }
    .notable-sales-counts__number {
        font-size: 1.75rem;
    }
    .notable-sales-section__title {
        font-size: 1.35rem;
    }
}
@media (max-width: 480px) {
    .notable-sales-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════
   SHOP FILTERS & TRUST STRIP
   ═══════════════════════════════════════════ */

.shop-trust-strip {
    background: var(--grey-50);
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid var(--grey-100);
}
.shop-trust-strip__text {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--grey-600);
}

/* Trust badge tooltips */
.trust-badge {
    cursor: pointer;
    border-bottom: 1px dotted var(--grey-400);
    position: relative;
    transition: color var(--duration-fast);
}
.trust-badge:hover {
    color: var(--grey-900);
}
.trust-badge__tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--grey-900);
    color: #fff;
    font-size: 0.72rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 12px 16px;
    border-radius: 4px;
    width: 260px;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.trust-badge__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--grey-900);
}
.trust-badge.active .trust-badge__tooltip {
    opacity: 1;
    pointer-events: auto;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
    margin-bottom: var(--space-xl);
    align-items: center;
}
.shop-filters__group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.shop-filters__label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-right: 4px;
}
.shop-filters__btn {
    padding: 6px 16px;
    border: 1px solid var(--grey-200);
    background: transparent;
    color: var(--grey-600);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-fast);
    font-family: var(--font-body);
}
.shop-filters__btn:hover {
    border-color: var(--grey-400);
    color: var(--grey-900);
}
.shop-filters__btn.active {
    background: var(--grey-900);
    color: var(--white);
    border-color: var(--grey-900);
}

.shop-filters--split {
    gap: var(--space-md);
}

/* Department Tabs — prominent category navigation */
.dept-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--grey-200);
}
.dept-tabs__link {
    padding: 14px 28px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    font-weight: 400;
    white-space: nowrap;
}
.dept-tabs__link:hover {
    color: var(--grey-900);
}
.dept-tabs__link--active {
    color: var(--grey-900);
    border-bottom-color: var(--gold);
    font-weight: 500;
}

.shop-filters__box {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
    align-items: center;
    padding: 14px 20px;
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    background: #fafafa;
}

/* Card CTA Reserve */
.card-artwork__cta {
    display: block;
    margin-top: 0.5rem;
    padding: 6px 0;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border-top: 1px solid var(--grey-100);
    transition: color var(--duration-fast);
}
.card-artwork:hover .card-artwork__cta {
    color: var(--grey-900);
}

/* Event filters (exhibitions/fairs) */
.event-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    align-items: center;
}
.event-filters__group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

@media (max-width: 768px) {
    .shop-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-filters__btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    .dept-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .dept-tabs::-webkit-scrollbar { display: none; }
    .dept-tabs__link {
        padding: 12px 18px;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }
}


/* ═══════════════════════════════════════════
   PRODUCT — TRUST / SPECIALIST / FINANCING
   ═══════════════════════════════════════════ */

.product-trust {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--grey-50);
    border-left: 3px solid var(--gold);
}
.product-trust__text {
    font-size: 0.82rem;
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.product-trust__text:last-child {
    margin-bottom: 0;
}
.product-trust__text a {
    color: var(--gold);
    text-decoration: underline;
}

/* Product page — currency selector */
.product-price-block {
    margin: var(--space-sm) 0;
}
.product-currency-selector {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}
.product-currency-btn {
    background: transparent;
    border: 1px solid var(--grey-300);
    padding: 3px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--grey-600);
    transition: all 0.2s;
}
.product-currency-btn.active,
.product-currency-btn:hover {
    background: #C9A96E;
    color: #fff;
    border-color: #C9A96E;
}
.product-currency-disclaimer {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--grey-500);
    line-height: 1.5;
    font-style: italic;
}
.product-add-to-cart {
    margin-top: 16px;
}

/* Product page — shipping info */
.product-shipping-info {
    margin: var(--space-sm) 0;
}
.product-shipping-info__line {
    font-size: 0.82rem;
    color: var(--grey-600);
    line-height: 1.8;
    display: flex;
    align-items: center;
}

/* Product page — Learn More accordion sections */
.product-learn-more {
    margin-top: var(--space-md);
    border-top: 1px solid var(--grey-200);
}
.product-learn-more__section {
    border-bottom: 1px solid var(--grey-200);
}
.product-learn-more__title {
    display: block;
    padding: 14px 0;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    cursor: pointer;
    list-style: none;
    position: relative;
    font-weight: 500;
}
.product-learn-more__title::-webkit-details-marker {
    display: none;
}
.product-learn-more__title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--grey-400);
    transition: transform 0.2s;
}
details[open] > .product-learn-more__title::after {
    content: '−';
}
.product-learn-more__body {
    padding: 0 0 16px 0;
    font-size: 0.82rem;
    color: var(--grey-600);
    line-height: 1.7;
}
.product-learn-more__body p {
    margin-bottom: 0.6rem;
}
.product-learn-more__body p:last-child {
    margin-bottom: 0;
}
.product-learn-more__body ul {
    margin: 0.4rem 0 0.6rem 1.2rem;
    padding: 0;
}
.product-learn-more__body ul li {
    margin-bottom: 0.3rem;
}
.product-learn-more__body a {
    color: var(--gold);
    text-decoration: underline;
}

/* Product page — Read More toggle */
.product-description--truncated {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}
.product-description--truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}
.product-read-more-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
    margin-top: 4px;
}

.product-financing {
    margin-top: 0;
    font-size: 0.82rem;
    color: var(--grey-600);
    line-height: 1.65;
    font-style: normal;
}
.product-financing a {
    color: var(--gold);
    text-decoration: underline;
}

.product-financing-box {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--grey-200);
    background: #fff;
}

.product-financing-box__label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.35rem;
}

.product-specialist {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-200);
}
.product-specialist__label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 0.35rem;
}
.product-specialist__person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-specialist__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--grey-200);
}
.product-specialist__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 0.15rem;
}
.product-specialist__email {
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--duration-fast);
}
.product-specialist__email:hover {
    color: var(--grey-900);
    text-decoration: underline;
}


/* ═══════════════════════════════════════════
   RESTORATION VIDEO
   ═══════════════════════════════════════════ */

.restoration-video {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
}
.restoration-video__player {
    width: 100%;
    height: auto;
    display: block;
}


/* ═══════════════════════════════════════════
   HOMEPAGE — BUY NOW FRAME + CATEGORIES
   ═══════════════════════════════════════════ */

.home-buy-now-frame {
    border-top: 3px solid #C5A55A;
    border-bottom: 3px solid #C5A55A;
    background: linear-gradient(180deg, rgba(197, 165, 90, 0.08), rgba(197, 165, 90, 0.02));
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}
.home-buy-now-frame::before,
.home-buy-now-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #C5A55A;
}
.home-buy-now-frame::before { left: 0; }
.home-buy-now-frame::after { right: 0; }

.home-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-categories__card {
    display: block;
    padding: 34px 28px;
    border: 1px solid var(--grey-200);
    background: #fff;
    text-decoration: none;
    transition: transform var(--duration-fast), border-color var(--duration-fast);
}

.home-categories__card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.home-categories__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-500);
}

.home-categories__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--grey-900);
    margin: 10px 0 22px;
}

.home-categories__cta {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.home-categories__card--antiquities {
    background: linear-gradient(130deg, rgba(212, 190, 149, 0.18), #fff 65%);
}

.home-categories__preview {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 2px;
    position: relative;
}

.home-categories__preview-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation-name: homeCategoriesSlide;
    animation-duration: calc(var(--slide-count, 1) * var(--slide-step, 3.4s));
    animation-delay: calc(var(--slide-index, 0) * var(--slide-step, 3.4s));
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.home-categories__preview[data-slide-count="1"] .home-categories__preview-slide {
    position: relative;
    opacity: 1;
    animation: none;
}

@keyframes homeCategoriesSlide {
    0%, 16% { opacity: 0; }
    20%, 76% { opacity: 1; }
    84%, 100% { opacity: 0; }
}

.home-categories__mini-grid {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.home-categories__mini-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 10px;
    align-items: center;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.home-categories__mini-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.home-categories__mini-thumb {
    width: 78px;
    height: 52px;
    overflow: hidden;
    border-radius: 1px;
}

.home-categories__mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-categories__mini-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-categories__mini-artist {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 2px;
}

.home-categories__mini-title {
    font-size: 0.74rem;
    line-height: 1.35;
    color: var(--grey-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-categories__card--oldmasters {
    background: linear-gradient(130deg, rgba(200, 180, 140, 0.2), #fff 65%);
}

.home-categories__card--drawings {
    background: linear-gradient(130deg, rgba(220, 210, 190, 0.24), #fff 65%);
}

@media (max-width: 900px) {
    .home-categories {
        grid-template-columns: 1fr;
    }

    .home-categories__mini-card {
        grid-template-columns: 92px 1fr;
        padding: 7px;
    }

    .home-categories__mini-thumb {
        width: 92px;
        height: 62px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-categories__preview-slide {
        animation: none !important;
        opacity: 0;
    }

    .home-categories__preview-slide:first-child {
        opacity: 1;
    }
}



/* ═══════════════════════════════════════════
   SELL ART PAGE
   ═══════════════════════════════════════════ */

/* Scroll offset for fixed nav */
[id^="sell-"] {
    scroll-margin-top: 120px;
}

/* ---- Hero ---- */
.sell-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: var(--grey-900);
    overflow: hidden;
}
.sell-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero/sell-art-hero.jpg') center/cover no-repeat;
    opacity: 0.35;
}
.sell-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.85));
}
.sell-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.sell-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}
.sell-hero__intro {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-lg);
}
.sell-hero__ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.sell-hero__btn.btn--outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.sell-hero__btn.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ---- How It Works ---- */
.sell-how__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.sell-how__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-md);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.sell-how__step {
    text-align: center;
    padding: var(--space-md);
}
.sell-how__icon {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}
.sell-how__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}
.sell-how__step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: var(--space-xs);
}
.sell-how__step-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--grey-600);
}
.sell-how__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    padding-top: var(--space-xl);
}
.sell-how__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ---- Services ---- */
.sell-services {
    background: var(--grey-50);
}
.sell-services__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.sell-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.sell-services__card {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--grey-200);
    cursor: pointer;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.sell-services__card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sell-services__icon {
    color: var(--gold);
    margin-bottom: var(--space-md);
}
.sell-services__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 0.6rem;
}
.sell-services__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--grey-600);
}

/* ---- Statistics ---- */
.sell-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
}
.sell-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}
.sell-stats__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--grey-900);
    line-height: 1.1;
}
.sell-stats__label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-600);
}

/* ---- Success Stories ---- */
.sell-stories__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.sell-stories__wrapper {
    position: relative;
}
.sell-stories__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-lg);
    padding-bottom: var(--space-sm);
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sell-stories__track::-webkit-scrollbar {
    display: none;
}
.sell-stories__card {
    min-width: 300px;
    max-width: 340px;
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--grey-200);
    overflow: hidden;
}
.sell-stories__image {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    background: var(--grey-200);
}
.sell-stories__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sell-stories__info {
    padding: var(--space-md);
}
.sell-stories__artist {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}
.sell-stories__artwork {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: var(--space-xs);
}
.sell-stories__text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--grey-600);
}
.sell-stories__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--grey-300);
    background: var(--white);
    color: var(--grey-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--duration-fast), color var(--duration-fast);
    z-index: 2;
}
.sell-stories__arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.sell-stories__arrow--left {
    left: -22px;
}
.sell-stories__arrow--right {
    right: -22px;
}

/* ---- Why Colnaghi ---- */
.sell-why__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.sell-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.sell-why__point {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}
.sell-why__icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.sell-why__content {
    flex: 1;
}
.sell-why__point-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: var(--space-xs);
}
.sell-why__point-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--grey-600);
}
.sell-why__confidentiality {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-style: italic;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--grey-200);
}

/* ---- FAQ ---- */
.sell-faq__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.sell-faq__list {
    max-width: 800px;
    margin: 0 auto;
}
.sell-faq__item {
    border-bottom: 1px solid var(--grey-200);
}
.sell-faq__item:first-child {
    border-top: 1px solid var(--grey-200);
}
.sell-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey-900);
    cursor: pointer;
    list-style: none;
    min-height: 44px;
}
.sell-faq__question::-webkit-details-marker {
    display: none;
}
.sell-faq__question::marker {
    display: none;
    content: '';
}
.sell-faq__question::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--grey-600);
    border-bottom: 1.5px solid var(--grey-600);
    transform: rotate(45deg);
    transition: transform var(--duration-fast) var(--ease-out);
    flex-shrink: 0;
    margin-left: var(--space-md);
}
.sell-faq__item[open] > .sell-faq__question::after {
    transform: rotate(-135deg);
}
.sell-faq__answer {
    padding: 0 0 var(--space-md) 0;
}
.sell-faq__answer p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--grey-600);
}

/* ---- CTA Finale ---- */
.sell-cta {
    background: var(--grey-50);
}
.sell-cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}
.sell-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-900);
    margin-bottom: var(--space-md);
}
.sell-cta__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey-600);
    margin-bottom: var(--space-lg);
}
.sell-cta__btn {
    min-height: 44px;
}

/* ---- Form wrapper ---- */
.sell-form {
    max-width: 740px;
    margin: 0 auto;
}
.sell-form__header {
    margin-bottom: var(--space-lg);
}
.sell-form__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--grey-900);
    margin-bottom: 0.5rem;
}
.sell-form__note {
    font-size: 0.82rem;
    color: var(--grey-500);
}

/* Progress bar (new) */
.sell-form__progress {
    margin-bottom: var(--space-xl);
}
.sell-form__progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}
.sell-form__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    min-height: 44px;
    font-family: var(--font-body);
}
.sell-form__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--grey-300);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey-400);
    transition: all var(--duration-fast);
}
.sell-form__step-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-400);
    transition: color var(--duration-fast);
}
.sell-form__step.active .sell-form__step-num {
    border-color: var(--gold);
    color: var(--gold);
}
.sell-form__step.active .sell-form__step-label {
    color: var(--grey-900);
}
.sell-form__step.completed .sell-form__step-num {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.sell-form__step.completed .sell-form__step-label {
    color: var(--grey-700);
}
.sell-form__progress-bar {
    height: 3px;
    background: var(--grey-200);
    border-radius: 2px;
    overflow: hidden;
}
.sell-form__progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width var(--duration-normal) var(--ease-out);
}

/* Form sections */
.sell-form__section {
    border: none;
    padding: 0;
    margin: 0;
}
.sell-form__legend {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: var(--space-md);
    display: block;
    width: 100%;
}
.sell-form__hint {
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: var(--space-md);
    font-style: italic;
}

/* Fields */
.sell-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.sell-form__field {
    margin-bottom: var(--space-md);
}
.sell-form__label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--grey-700);
    margin-bottom: 6px;
}
.sell-form__req {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-left: 4px;
}
.sell-form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--grey-200);
    background: var(--white);
    font-size: 0.9rem;
    color: var(--grey-900);
    font-family: var(--font-body);
    transition: border-color var(--duration-fast);
}
.sell-form__input:focus {
    border-color: var(--grey-400);
    outline: none;
}
.sell-form__input::placeholder {
    color: var(--grey-400);
}
.sell-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23757575' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.sell-form__textarea {
    min-height: 120px;
    resize: vertical;
}
.sell-form__error {
    display: block;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 4px;
    min-height: 1em;
}
.sell-form__field--error .sell-form__input {
    border-color: #c0392b;
}

/* Navigation buttons */
.sell-form__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-100);
}

/* File upload zone */
.sell-form__uploads {
    margin-top: var(--space-md);
}
.sell-form__upload-zone {
    border: 2px dashed var(--grey-200);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--duration-fast);
    cursor: pointer;
    margin-bottom: var(--space-md);
}
.sell-form__upload-zone--drag {
    border-color: var(--gold);
    background: rgba(201,169,110,0.04);
}
.sell-form__upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--grey-600);
}
.sell-form__upload-label span {
    font-size: 0.9rem;
    color: var(--grey-700);
}
.sell-form__upload-label small {
    font-size: 0.75rem;
    color: var(--grey-400);
    line-height: 1.5;
}
.sell-form__upload-label svg {
    color: var(--gold);
}
.sell-form__file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.sell-form__upload-hint {
    display: block;
    font-size: 0.72rem;
    color: var(--grey-400);
    margin-bottom: 4px;
}
.sell-form__file-styled {
    cursor: pointer;
    padding: 10px 14px;
}
.sell-form__file-styled::file-selector-button {
    font-family: var(--font-body);
    font-size: 0.78rem;
    padding: 4px 12px;
    border: 1px solid var(--grey-200);
    background: var(--grey-50);
    color: var(--grey-700);
    cursor: pointer;
    margin-right: 8px;
}

/* Thumbnails */
.sell-form__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.sell-form__thumb {
    position: relative;
    width: 72px;
    height: 72px;
    border: 1px solid var(--grey-200);
    overflow: hidden;
}
.sell-form__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sell-form__thumb-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* Checkboxes / Consent */
.sell-form__checkgroup {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sell-form__check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--grey-700);
    cursor: pointer;
    line-height: 1.5;
}
.sell-form__check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.sell-form__check a {
    color: var(--gold);
    text-decoration: underline;
}
.sell-form__consents {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Submit button disabled state */
.sell-form__submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Confirmation */
.sell-form__confirmation {
    text-align: center;
    padding: var(--space-3xl) 0;
}
.sell-form__conf-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--grey-900);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}
.sell-form__conf-text {
    font-size: 0.92rem;
    color: var(--grey-600);
    margin-bottom: 0.5rem;
}
.sell-form__conf-ref {
    font-size: 1rem;
    color: var(--grey-900);
    margin: var(--space-md) 0;
}
.sell-form__conf-ref strong {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sell-hero {
        min-height: auto;
        padding: 140px 0 60px;
    }
    .sell-hero__ctas {
        flex-direction: column;
    }
    .sell-hero__btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
    }
    .sell-how__steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .sell-how__connector {
        display: none;
    }
    .sell-services__grid {
        grid-template-columns: 1fr;
    }
    .sell-stats__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .sell-stories__arrow {
        display: none;
    }
    .sell-stories__card {
        min-width: 280px;
    }
    .sell-why__grid {
        grid-template-columns: 1fr;
    }
    .sell-form__row {
        grid-template-columns: 1fr;
    }
    .sell-form__checkgroup {
        flex-direction: column;
    }
    .sell-form__step-label {
        font-size: 0.6rem;
    }
}

/* ---- Reveal Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .reveal--delay-1,
    .reveal--delay-2,
    .reveal--delay-3,
    .reveal--delay-4 {
        transition-delay: 0s;
    }
}

/* ============================================================
   ULTRA MODERN OVERRIDES — 2026
   ============================================================ */
:root {
    --black: #0a0a0a;
    --cream: #f5f0e8;
    --off-white: #fafaf8;
    --gold: #b8974a;
    --gold-light: #ceb273;
    --gold-dim: rgba(184, 151, 74, 0.15);
    --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --duration-xslow: 1.4s;
}

body {
    background: var(--off-white);
}

/* Native OS cursor restored across all devices for reliable visibility (custom cursor removed) */
@media (min-width: 901px) {
    html,
    body {
        cursor: auto;
    }
    a,
    button,
    [role='button'] {
        cursor: pointer;
    }
}

.cursor-dot,
.cursor-ring {
    display: none !important;
}

.section--light {
    background: var(--cream);
}

.section--dark {
    background: #080808;
}

.nav {
    padding: 0 clamp(0.85rem, 2vw, 1.5rem);
    border-bottom: 1px solid transparent;
}

.nav--scrolled {
    background-color: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.nav__link {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.nav__link::after {
    background: var(--gold);
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold);
}

.nav__link--active::after {
    width: 100%;
}

.nav__private-btn {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    padding: 0.52rem 1rem;
    border: 1px solid rgba(10, 10, 10, 0.2);
    opacity: 0.85;
}

.nav__private-btn:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.hero {
    min-height: 600px;
}

.hero__overlay {
    background:
        radial-gradient(circle at 72% 28%, rgba(184, 151, 74, 0.18), transparent 40%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.56) 100%);
}

.hero__content {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: min(920px, calc(100% - 2.2rem));
    text-align: center;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

/* Long exhibition/fair titles: scale down so they never overflow the hero */
.hero__title--long {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.hero__title--xlong {
    font-size: clamp(2rem, 4.6vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero__cta {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    background: linear-gradient(180deg, #d4b06a 0%, #b8944f 100%);
    color: #fff;
    border: 1px solid rgba(212, 176, 106, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.95rem 2.9rem;
    box-shadow: 0 4px 12px rgba(184, 151, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__cta:hover {
    background: linear-gradient(180deg, #e0c07a 0%, #c9a55a 100%);
    color: #fff;
    border-color: rgba(224, 192, 122, 0.8);
    box-shadow: 0 6px 20px rgba(184, 151, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hero__nav {
    bottom: 1.2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 0.5rem;
}

.hero__dot {
    width: 30px;
    height: 2px;
    border-radius: 999px;
}

.hero__dot.active {
    background: var(--gold-light);
    transform: scaleX(1.22);
}

.hero__progress {
    height: 1px;
    background: var(--gold-light);
}

.section-header {
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    width: 90px;
    height: 1px;
    background: var(--gold);
}

.section-header__title {
    font-size: clamp(2.4rem, 7vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.section-header__link {
    font-size: 0.64rem;
    letter-spacing: 0.23em;
}

.section-header__link:hover {
    color: var(--gold);
    transform: translateX(2px);
}

.card-artwork {
    position: relative;
}

.card-artwork__image {
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out),
                filter var(--duration-slow) var(--ease-out);
}

.card-artwork:hover .card-artwork__image {
    opacity: 0.9;
    transform: scale(1.05);
    filter: saturate(1.05) contrast(1.04);
}

.card-artwork__overlay {
    padding: 1.8rem 1.6rem;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.10) 50%, transparent);
}

.card-artwork__artist {
    font-size: 0.63rem;
    letter-spacing: 0.22em;
    color: var(--grey-500);
    margin-top: 0.55rem;
    margin-bottom: 0.45rem;
}

.card-artwork__title {
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.footer {
    background: #0b0b0b;
    color: rgba(255, 255, 255, 0.9);
}

.footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.footer__logo svg {
    fill: var(--white);
}

.footer__heading {
    color: rgba(255, 255, 255, 0.58);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.74);
}

.footer__links a:hover,
.footer__social a:hover {
    color: var(--gold-light);
}

.footer__copy,
.footer__social a {
    color: rgba(255, 255, 255, 0.45);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--black);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(10, 10, 10, 0.45);
    transition: width 0.38s var(--ease-out), height 0.38s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

body.cursor-hover .cursor-dot {
    opacity: 0;
}

body.cursor-hover .cursor-ring {
    width: 58px;
    height: 58px;
    border-color: var(--black);
    background: rgba(10, 10, 10, 0.04);
}

body.cursor-inverse .cursor-dot {
    background: var(--white);
}

body.cursor-inverse .cursor-ring {
    border-color: rgba(255, 255, 255, 0.58);
}

body.cursor-clicking .cursor-ring {
    width: 26px;
    height: 26px;
}

.page-loader {
    background: var(--black);
}

.page-loader__logo svg {
    fill: var(--white);
    animation: none;
}

/* Split Text Animation (disabled) */
.split-title .word {
    display: inline-block;
    transform: none;
}

/* Staggered children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(n+7) { transition-delay: 480ms; opacity: 1; transform: none; }

/* Cart page */
.cart-page {
    min-height: 62vh;
    padding-top: var(--nav-height);
}

.cart-page__container {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem) 1.2rem 4rem;
}

.cart-page__title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 2rem;
}

.cart-page__alert {
    padding: 0.82rem 1rem;
    font-size: 0.84rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.cart-page__alert--success {
    background: #f2f8f1;
    color: #2d5a2d;
    border-color: #d5e7d2;
}

.cart-page__alert--error {
    background: #fff2f1;
    color: #8b2d2d;
    border-color: #f1d3d2;
}

.cart-page__empty {
    color: var(--grey-600);
    font-size: 0.95rem;
}

.cart-page__empty-cta {
    margin-top: 1rem;
    display: inline-flex;
}

.cart-page__item {
    display: grid;
    grid-template-columns: 108px 1fr auto;
    gap: 1.2rem;
    align-items: center;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.cart-page__thumb {
    width: 108px;
    height: 108px;
    background: var(--grey-100);
}

.cart-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page__artist {
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin: 0 0 0.3rem;
}

.cart-page__item-title {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.cart-page__qty-price {
    margin: 0;
    color: var(--grey-600);
    font-size: 0.85rem;
}

.cart-page__item-right {
    text-align: right;
}

.cart-page__subtotal {
    margin: 0 0 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.cart-page__remove {
    border: 0;
    background: transparent;
    color: var(--grey-600);
    font-size: 0.76rem;
    text-decoration: underline;
    letter-spacing: 0.05em;
}

.cart-page__total-wrap {
    text-align: right;
    padding: 1.7rem 0;
    border-top: 2px solid var(--black);
    margin-top: 0.5rem;
}

.cart-page__total {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.cart-page__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-page__back-link {
    font-size: 0.85rem;
    color: var(--grey-700);
}

/* Checkout page */
.checkout-page {
    min-height: 62vh;
    padding-top: var(--nav-height);
}

.checkout-page__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem) 1.2rem 4rem;
}

.checkout-page__title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1.8rem;
}

.checkout-page__notice {
    padding: 1rem 1.2rem;
    background: #fcf7ea;
    border: 1px solid #e8dab4;
    margin-bottom: 1.8rem;
    font-size: 0.8rem;
    line-height: 1.75;
    color: #5a4a1e;
}

.checkout-page__alert {
    padding: 0.82rem 1rem;
    background: #fff2f1;
    color: #8b2d2d;
    border: 1px solid #f1d3d2;
    margin-bottom: 1rem;
    font-size: 0.84rem;
}

.checkout-page__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.checkout-page__section-title {
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.checkout-page__field {
    margin-bottom: 1rem;
}

.checkout-page__field--large-gap {
    margin-bottom: 1.8rem;
}

.checkout-page__field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkout-page__label {
    display: block;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--grey-500);
    margin-bottom: 0.35rem;
}

.checkout-page__input {
    width: 100%;
    padding: 0.76rem 0.8rem;
    border: 1px solid rgba(10, 10, 10, 0.17);
    background: #fff;
    font-size: 0.86rem;
}

.checkout-page__phone-wrap {
    display: flex;
    gap: 0;
}
.checkout-page__phone-prefix {
    flex-shrink: 0;
    width: auto;
    min-width: 100px;
    padding: 0.76rem 0.5rem;
    border: 1px solid rgba(10, 10, 10, 0.17);
    border-right: none;
    background: var(--grey-50, #fafafa);
    font-size: 0.86rem;
    font-family: var(--font-body);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 22px;
}
.checkout-page__phone-input {
    border-left: none !important;
    flex: 1;
}

.checkout-page__card-element {
    padding: 0.9rem;
    border: 1px solid rgba(10, 10, 10, 0.17);
    background: #fff;
    margin-bottom: 0.8rem;
}

.checkout-page__card-errors {
    color: #8b2d2d;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.checkout-page__payment-note {
    font-size: 0.72rem;
    color: var(--grey-500);
    margin-bottom: 0.7rem;
    text-align: center;
}

.checkout-page__terms-check {
    margin-bottom: 1rem;
    text-align: center;
}
.checkout-page__checkbox-label {
    font-size: 0.78rem;
    color: var(--grey-600);
    cursor: pointer;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.checkout-page__checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkout-page__submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
}

.checkout-page__summary-col {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(10, 10, 10, 0.1);
    padding: 1rem 1.1rem;
    align-self: start;
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

.checkout-page__summary-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.8rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.checkout-page__summary-thumb {
    width: 72px;
    height: 72px;
    background: var(--grey-100);
}

.checkout-page__summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-page__summary-title {
    margin: 0 0 0.1rem;
    font-size: 0.84rem;
    color: var(--grey-800);
    font-weight: 500;
}

.checkout-page__summary-artist {
    margin: 0;
    font-size: 0.72rem;
    color: var(--grey-500);
}

.checkout-page__summary-price {
    font-size: 0.82rem;
    color: var(--grey-700);
    white-space: nowrap;
}

.checkout-page__summary-total-wrap {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--black);
    text-align: right;
}

.checkout-page__summary-total {
    margin: 0;
    font-size: 1.6rem;
}

/* Shop filters refinement */
.shop-filters__btn {
    border-radius: 999px;
    padding: 0.42rem 0.92rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.shop-filters__btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Dept tabs enhanced */
.dept-tabs__link {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 15px 17px;
}
.dept-tabs__link--active {
    border-bottom-color: var(--gold);
}

.shop-filters__box {
    border: 1px solid rgba(10, 10, 10, 0.09);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

/* Mini cart premium */
.mini-cart__backdrop {
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(3px);
}

.mini-cart__panel {
    background: #faf9f6;
    border-left: 1px solid rgba(10, 10, 10, 0.08);
}

.mini-cart__title {
    font-size: clamp(2rem, 4vw, 2.4rem);
}

.mini-cart__actions .btn--primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.mini-cart__actions .btn--primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Mobile nav fullscreen — light Sotheby's style */
@media (max-width: 900px) {
    /* When menu is open, boost entire nav z-index above all page content */
    .nav:has(.nav__menu.active),
    .nav.nav--menu-open {
        z-index: 99999 !important;
    }

    .nav__menu.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: calc(var(--nav-height) + 1.5rem) 1.5rem 3rem;
        background: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        z-index: 99999 !important;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
    }

    .nav__menu.active .nav__link {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
        letter-spacing: -0.01em;
        text-transform: none;
        font-family: var(--font-heading);
        color: var(--grey-900);
        padding: 0.8rem 0.25rem;
        margin-bottom: 0;
        opacity: 1;
        border-bottom: 1px solid var(--grey-100);
        transition: color 0.2s ease;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav__menu.active .nav__link:hover,
    .nav__menu.active .nav__link--active {
        color: var(--gold);
    }
    .nav__menu.active .nav__link::after {
        display: none;
    }

    .nav__menu.active .nav__link--buy {
        background: linear-gradient(180deg, #d4b06a 0%, #b8944f 100%) !important;
        color: #fff !important;
        padding: 0.85rem 2.2rem !important;
        margin-top: 1.5rem !important;
        text-align: center !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.14em !important;
        text-transform: uppercase !important;
        font-family: var(--font-body) !important;
        border: none !important;
        border-bottom: none !important;
        border-radius: 100px !important;
        opacity: 1 !important;
        box-shadow: 0 4px 14px rgba(184, 151, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        text-align: center !important;
    }

    .nav__menu.active .nav__dropdown {
        text-align: left;
    }

    /* Social icons — only shown inside the open mobile menu */
    .nav__menu.active .nav__menu-social {
        display: flex;
        justify-content: flex-start;
        gap: 1.75rem;
        margin-top: 2rem;
        padding-top: 1.75rem;
        border-top: 1px solid var(--grey-100);
    }
    .nav__menu.active .nav__menu-social a {
        color: var(--grey-700);
        transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
    }
    .nav__menu.active .nav__menu-social a:hover {
        color: var(--gold);
        transform: translateY(-2px);
    }
    .nav__menu.active .nav__menu-social svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    /* Staggered entrance for menu items */
    @keyframes navItemIn {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav__menu.active > * {
        animation: navItemIn 0.45s var(--ease-out) both;
    }
    .nav__menu.active > *:nth-child(1) { animation-delay: 0.04s; }
    .nav__menu.active > *:nth-child(2) { animation-delay: 0.08s; }
    .nav__menu.active > *:nth-child(3) { animation-delay: 0.12s; }
    .nav__menu.active > *:nth-child(4) { animation-delay: 0.16s; }
    .nav__menu.active > *:nth-child(5) { animation-delay: 0.20s; }
    .nav__menu.active > *:nth-child(6) { animation-delay: 0.24s; }
    .nav__menu.active > *:nth-child(7) { animation-delay: 0.28s; }
    .nav__menu.active > *:nth-child(8) { animation-delay: 0.32s; }
    .nav__menu.active > *:nth-child(9) { animation-delay: 0.36s; }
    .nav__menu.active > *:nth-child(10) { animation-delay: 0.40s; }

    /* Chevron indicator for expandable sections — rotates when open */
    .nav__menu.active .nav__dropdown > .nav__link::after {
        content: '' !important;
        display: block !important;
        width: 8px;
        height: 8px;
        flex-shrink: 0;
        border-right: 1.5px solid var(--grey-400);
        border-bottom: 1.5px solid var(--grey-400);
        transform: rotate(-45deg);
        transition: transform 0.28s var(--ease-out);
        margin-left: 1rem;
    }
    .nav__menu.active .nav__dropdown.is-open > .nav__link::after {
        transform: rotate(45deg);
        border-color: var(--gold);
    }

    .nav__menu.active .nav__dropdown-menu {
        text-align: left;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        padding: 0 0 0 0.25rem;
        transition: max-height 0.32s var(--ease-out), opacity 0.25s ease, padding 0.25s ease;
    }

    .nav__menu.active .nav__dropdown.is-open .nav__dropdown-menu {
        max-height: 460px;
        opacity: 1;
        padding: 0.35rem 0 0.9rem 0.25rem;
    }

    .nav__menu.active .nav__dropdown-link {
        font-size: 0.98rem;
        letter-spacing: 0.01em;
        text-transform: none;
        font-family: var(--font-heading);
        color: var(--grey-600);
        padding: 0.5rem 0;
        text-align: left;
        display: block;
    }
    .nav__menu.active .nav__dropdown-link:hover {
        color: var(--gold);
    }
    .nav__menu.active button.nav__dropdown-link {
        font-size: 0.98rem;
        letter-spacing: 0.01em;
        color: var(--grey-600);
        padding: 0.5rem 0;
        text-align: left;
        display: block;
        background: none;
        border: none;
        width: 100%;
        font-family: var(--font-heading);
        text-transform: none;
        font-weight: normal;
        cursor: pointer;
        margin: 0;
    }

    /* Hamburger turns dark on white menu */
    .nav__hamburger.active span {
        background: var(--black) !important;
    }
}

@media (max-width: 768px) {
    .cart-page__item {
        grid-template-columns: 72px 1fr;
        gap: 0.75rem;
    }

    .cart-page__thumb {
        width: 72px;
        height: 72px;
    }

    .cart-page__item-right {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding-top: 0.5rem;
        border-top: 1px solid var(--grey-100, #f0f0f0);
        margin-top: 0.25rem;
    }

    .cart-page__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cart-page__checkout-btn {
        width: 100%;
    }
}

    .checkout-page__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .checkout-page__form-col {
        order: 1;
    }

    .checkout-page__summary-col {
        order: 2;
        position: static;
    }

    .checkout-page__field-grid {
        grid-template-columns: 1fr;
    }

    .shop-filters,
    .event-filters {
        display: grid;
        gap: 0.6rem;
    }

    .shop-filters__group,
    .event-filters__group {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }
}

@media (max-width: 900px) {
    html,
    body,
    a,
    button,
    [role='button'] {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .hero__content {
        top: auto !important;
        left: 1.25rem !important;
        right: 1.25rem !important;
        bottom: 4rem !important;
        transform: none !important;
        text-align: left !important;
        max-width: none !important;
        width: auto !important;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 2.8rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em;
        margin-bottom: 0.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero__subtitle {
        font-size: 0.82rem !important;
        line-height: 1.5;
        max-width: 85%;
        opacity: 0.85;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hero__label {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.4rem;
    }

    .hero__cta {
        margin-top: 1rem;
        padding: 0.7rem 1.6rem !important;
        font-size: 0.6rem !important;
        letter-spacing: 0.16em;
    }

    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 480px;
        max-height: none;
    }

    .hero__nav {
        left: 1.25rem;
        bottom: 1.2rem;
        transform: none;
    }

    .section-header__title {
        font-size: clamp(2rem, 13vw, 3.2rem);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

/* Extra small screens — hero fine-tuning */
@media (max-width: 420px) {
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 440px;
        max-height: none;
    }
    .hero__content {
        bottom: 3.5rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    .hero__title {
        font-size: clamp(1.6rem, 8vw, 2rem);
        line-height: 1.1;
    }
    .hero__subtitle {
        font-size: 0.76rem;
        max-width: 92%;
        line-height: 1.45;
    }
    .hero__cta {
        padding: 0.65rem 1.4rem;
        font-size: 0.58rem;
        margin-top: 0.8rem;
    }
    .hero__nav {
        bottom: 1rem;
        left: 1rem;
    }
    .hero__label {
        font-size: 0.58rem;
        margin-bottom: 0.3rem;
    }
}

/* WOW refinement: cinematic accents */
.exhibit-card__hero,
.home-featured-grid .card-artwork,
.home-categories__card {
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.exhibit-card__hero:hover,
.home-featured-grid .card-artwork:hover,
.home-categories__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(10, 10, 10, 0.12);
}

.home-featured-grid .card-artwork:hover,
.home-categories__card:hover {
    padding: 10px;
}

.exhibit-card__hero:hover {
    padding: 0;
}

.exhibit-card__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.16) 46%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--ease-out);
    pointer-events: none;
}

.exhibit-card__hero:hover::after {
    transform: translateX(120%);
}

.dynamic-cover-section {
    border: 1px solid rgba(10, 10, 10, 0.07);
    background: linear-gradient(160deg, rgba(255,255,255,0.66), rgba(255,255,255,0.4));
    backdrop-filter: blur(5px);
}

.dynamic-cover-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 10%, rgba(184,151,74,0.13), transparent 38%);
    pointer-events: none;
}

.artwork-detail__disclaimer {
    font-size: 0.74rem;
    color: var(--grey-500);
    margin-top: 0.55rem;
    line-height: 1.65;
}

/* Product enquiry modal */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.enquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.56);
    backdrop-filter: blur(4px);
}

.enquiry-modal__panel {
    position: relative;
    width: min(520px, 92vw);
    background: #fff;
    padding: 2rem;
    border: 1px solid rgba(10, 10, 10, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.enquiry-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.8rem;
    border: 0;
    background: transparent;
    font-size: 1.9rem;
    color: var(--grey-600);
}

.enquiry-modal__title {
    margin: 0 0 0.3rem;
    font-size: 1.75rem;
}

.enquiry-modal__subtitle {
    margin: 0 0 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
}

.enquiry-modal__alert {
    padding: 0.7rem 0.8rem;
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
}

.enquiry-modal__alert--success {
    background: #f2f8f1;
    color: #2d5a2d;
}

.enquiry-modal__field {
    margin-bottom: 0.8rem;
}

.enquiry-modal__input,
.enquiry-modal__textarea {
    width: 100%;
    padding: 0.72rem 0.8rem;
    border: 1px solid rgba(10, 10, 10, 0.18);
    font-size: 0.84rem;
}

.enquiry-modal__textarea {
    resize: vertical;
    min-height: 110px;
}

.enquiry-modal__submit {
    width: 100%;
}

/* Checkout success */
.checkout-success-page {
    min-height: 62vh;
    padding-top: var(--nav-height);
}

.checkout-success-page__container {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 1.2rem 4rem;
    text-align: center;
}

.checkout-success-page__check {
    font-size: 2.9rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    text-shadow: 0 0 26px rgba(184, 151, 74, 0.35);
    animation: successPulse 2.6s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.checkout-success-page__title {
    font-size: clamp(2.1rem, 5vw, 3rem);
    margin-bottom: 0.8rem;
}

.checkout-success-page__lead {
    font-size: 0.95rem;
    color: var(--grey-600);
    margin: 0 auto 1.2rem;
    max-width: 62ch;
    line-height: 1.7;
}

.checkout-success-page__sublead {
    font-size: 0.8rem;
    color: var(--grey-500);
    margin-bottom: 1.4rem;
}

.checkout-success-page__details {
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(10, 10, 10, 0.1);
    padding: 1.35rem;
    margin-bottom: 1.3rem;
}

.checkout-success-page__section-title {
    font-size: 1.45rem;
    margin: 0 0 0.8rem;
}

.checkout-success-page__item-row {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.62rem 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    font-size: 0.86rem;
}

.checkout-success-page__item-artist {
    color: var(--grey-500);
}

.checkout-success-page__total-row {
    text-align: right;
    padding-top: 0.85rem;
    font-size: 1.04rem;
}

.checkout-success-page__shipping {
    text-align: left;
    margin-bottom: 1.3rem;
}

.checkout-success-page__shipping-title {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.checkout-success-page__shipping-text {
    margin: 0;
    font-size: 0.84rem;
    color: var(--grey-600);
    line-height: 1.7;
}

.checkout-success-page__actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
}

.checkout-success-page__info-box {
    background: #f8f7f5;
    border: 1px solid #e5e2dc;
    padding: 24px 28px;
    margin: 24px 0;
    text-align: left;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-success-page__info-box p { margin: 0 0 10px; font-size: 14px; }
.checkout-success-page__info-box ul { margin: 0; padding-left: 20px; font-size: 13px; color: #555; line-height: 1.8; }

.checkout-page__alert--aml {
    background: #fff8e6;
    border: 1px solid #e6c85a;
    color: #7a5d00;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.checkout-page__field-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.5;
}

.checkout-page__summary-note {
    font-size: 12px;
    color: #888;
    margin: 6px 0 0;
}

/* Legal / Terms pages */
.legal-page {
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
}
.legal-page__container {
    max-width: 780px;
}
.legal-page__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.legal-page__updated {
    font-size: 0.78rem;
    color: var(--grey-400);
    margin-bottom: 2.5rem;
}
.legal-page__body {
    font-size: 0.88rem;
    color: var(--grey-700);
    line-height: 1.8;
}
.legal-page__section {
    margin-bottom: 2rem;
}
.legal-page__section h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}
.legal-page__section p {
    margin-bottom: 0.7rem;
}
.legal-page__section ol,
.legal-page__section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}
.legal-page__section li {
    margin-bottom: 0.5rem;
}
.legal-page__section a {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .checkout-success-page__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Final QA fixes */
.hero__slide {
    pointer-events: none;
}

.hero__slide.active {
    pointer-events: auto;
}

.home-featured-grid .card-artwork__artist {
    margin-top: 0.85rem;
    margin-bottom: 0.45rem;
}

.home-featured-grid .card-artwork__title {
    margin-bottom: 0.45rem;
    line-height: 1.24;
}

.home-featured-grid .card-artwork__price,
.home-featured-grid .card-artwork__cta {
    margin-top: 0.55rem;
}

.page-loader__logo svg {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Artwork detail optimization */
.artwork-detail__hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    column-gap: clamp(1rem, 2vw, 2rem);
}

.artwork-detail__gallery {
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    align-self: start;
    min-height: calc(100vh - var(--nav-height) - 2.5rem);
}

.artwork-detail__main-image {
    max-height: min(78vh, 860px);
}

.artwork-detail__info {
    justify-content: flex-start;
    padding-top: clamp(1.25rem, 3vw, 2.2rem);
    gap: 0.25rem;
}

.artwork-detail__meta-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.artwork-detail__description,
.artwork-detail__section,
.product-trust,
.product-financing-box,
.product-specialist {
    margin-top: 1.15rem;
}

@media (max-width: 1024px) {
    .artwork-detail__gallery {
        position: relative;
        top: auto;
        min-height: 60vh;
    }
}

@media (max-width: 900px) {
    .artwork-detail__hero {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .artwork-detail__gallery {
        min-height: auto;
    }

    .artwork-detail__main-image {
        max-height: 70vh;
    }

    .artwork-detail__meta-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* ============================================================
   Phase A — Cinematic Event Pages (Exhibitions / Fairs)
   ============================================================ */
.page-hero--event {
    position: relative;
    min-height: clamp(430px, 66vh, 760px);
    display: flex;
    align-items: flex-end;
    padding: clamp(7rem, 15vh, 10.5rem) 0 clamp(2.6rem, 6.5vh, 4.4rem);
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.page-hero--event::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.68) 78%),
        radial-gradient(circle at 78% 18%, rgba(184, 151, 74, 0.3), transparent 44%),
        var(--event-hero-image);
    background-size: cover;
    background-position: var(--event-hero-position, center);
    transform: scale(1.04);
    animation: eventHeroDrift 18s ease-in-out infinite alternate;
}

.page-hero--event .container {
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.67rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero--event .page-hero__title {
    color: var(--white);
    font-size: clamp(2.8rem, 8vw, 7rem);
    line-height: 0.96;
    margin-bottom: 0.7rem;
}

.page-hero--event .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 64ch;
}

@keyframes eventHeroDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.1) translate3d(0, -1.8%, 0);
    }
}

.event-filters-shell {
    margin-top: clamp(-2.2rem, -4vw, -1.4rem);
    position: relative;
    z-index: 4;
}

.event-filters--floating {
    padding: 1.1rem 1.4rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: 0 16px 36px rgba(10, 10, 10, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.event-filters--floating .event-filters__group {
    gap: 0.5rem;
    align-items: center;
}

.event-filters--floating .shop-filters__btn {
    border-radius: 0;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.event-filters--floating .shop-filters__btn:hover {
    transform: translateY(-1px);
}

.exhibit-card--cinematic {
    margin-bottom: clamp(3rem, 8vw, 4.7rem);
}

/* Active exhibitions grid — 2 columns on desktop, 1 on mobile */
.exhibit-active-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 2.5vw, 2rem);
}
.exhibit-active-grid--single {
    grid-template-columns: 1fr;
}
.exhibit-active-grid--single .exhibit-card--active .exhibit-card__hero {
    aspect-ratio: 21 / 9;
}
.exhibit-card--active {
    border-radius: 14px;
    overflow: hidden;
}
.exhibit-card--active .exhibit-card__hero {
    aspect-ratio: 4 / 5;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.exhibit-card--active .exhibit-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}
.exhibit-card--active .exhibit-card__hero:hover .exhibit-card__image {
    transform: scale(1.05);
    filter: saturate(1.05) contrast(1.03);
}
.exhibit-card--active .exhibit-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}
.exhibit-card--active .exhibit-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    z-index: 2;
    color: #fff;
}
.exhibit-card--active .exhibit-card__title {
    font-family: var(--font-serif, 'EB Garamond', serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}
.exhibit-card--active .exhibit-card__location,
.exhibit-card--active .exhibit-card__dates {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}
.exhibit-card--active .exhibit-card__cta {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.exhibit-card--active .exhibit-card__hero:hover .exhibit-card__cta {
    border-bottom-color: #fff;
}
.exhibit-card--active .exhibit-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.exhibit-card--active .exhibit-card__badge--current {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
}
.exhibit-card--active .exhibit-card__badge--upcoming {
    background: rgba(184, 151, 74, 0.3);
    backdrop-filter: blur(4px);
    color: #fff;
}

@media (max-width: 768px) {
    .exhibit-active-grid {
        grid-template-columns: 1fr;
    }
    .exhibit-card--active .exhibit-card__hero {
        aspect-ratio: 3 / 4;
    }
    .exhibit-active-grid--single .exhibit-card--active .exhibit-card__hero {
        aspect-ratio: 16 / 10;
    }
}

.exhibit-card--cinematic .exhibit-card__hero {
    aspect-ratio: 2.18 / 1;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
}

.exhibit-card--cinematic .exhibit-card__image {
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.exhibit-card--cinematic .exhibit-card__hero:hover .exhibit-card__image {
    transform: scale(1.08) translate3d(0, -1.8%, 0);
    filter: saturate(1.08) contrast(1.06);
}

.exhibit-card--cinematic .exhibit-card__content {
    padding: clamp(2.2rem, 4vw, 3.3rem);
}

.exhibit-card__badge--current {
    background: var(--gold);
    color: var(--black);
    animation: goldPulse 2.8s ease-in-out infinite;
}

.exhibit-card__badge--upcoming {
    background: rgba(255, 255, 255, 0.9);
}

@keyframes goldPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(184, 151, 74, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(184, 151, 74, 0);
    }
}

.exhibit-card--cinematic .exhibit-card__cta {
    border-bottom-color: transparent;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.45s ease;
}

.exhibit-card--cinematic .exhibit-card__hero:hover .exhibit-card__cta {
    background-size: 100% 1px;
}

.exhibit-grid--masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.exhibit-grid--masonry .exhibit-grid__item {
    grid-column: auto;
    transition: transform 0.45s ease, opacity 0.35s ease;
    transition-delay: calc(var(--stagger-index, 0) * 18ms);
}

.exhibit-grid--masonry .exhibit-grid__image-wrap {
    aspect-ratio: 4 / 3;
}

.exhibit-grid--masonry .exhibit-grid__item:nth-child(6n + 2) .exhibit-grid__image-wrap {
    aspect-ratio: 1 / 1;
}

.exhibit-grid--masonry .exhibit-grid__item:nth-child(6n + 5) .exhibit-grid__image-wrap {
    aspect-ratio: 3 / 4;
}

.exhibit-grid--masonry .exhibit-grid__overlay {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0.95rem;
    opacity: 0;
    transition: opacity 0.32s ease;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 68%);
}

.exhibit-grid--masonry .exhibit-grid__item:hover .exhibit-grid__overlay {
    opacity: 1;
}

.exhibit-grid__view {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.exhibit-grid__item.is-filtering-out,
.exhibit-grid__item.is-filtering-in {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
}

.exhibit-grid__item.is-hidden {
    display: none !important;
}

/* Filter status bar */
.event-filter-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.2rem;
    margin-bottom: var(--space-lg, 2rem);
    background: var(--grey-50, #fafafa);
    border-left: 3px solid var(--gold, #b8974a);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    color: var(--grey-700, #616161);
    animation: filterStatusIn 0.3s ease-out;
}
.event-filter-status__text strong {
    color: var(--grey-900, #1a1a1a);
    font-weight: 600;
}
.event-filter-status__clear {
    background: none;
    border: none;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold, #b8974a);
    cursor: pointer;
    padding: 0.3rem 0;
    white-space: nowrap;
    transition: color 0.15s ease;
}
.event-filter-status__clear:hover {
    color: var(--grey-900, #1a1a1a);
}
@keyframes filterStatusIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .exhibit-grid--masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exhibit-grid--masonry .exhibit-grid__item:nth-child(6n + 2) .exhibit-grid__image-wrap,
    .exhibit-grid--masonry .exhibit-grid__item:nth-child(6n + 5) .exhibit-grid__image-wrap {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .page-hero--event {
        min-height: 380px;
        padding-top: calc(var(--nav-height) + 3rem);
    }

    .event-filters-shell {
        margin-top: -1rem;
    }

    .event-filters--floating {
        border-radius: 0;
    }

    .exhibit-card--cinematic .exhibit-card__hero {
        aspect-ratio: 16 / 10;
        border-radius: 14px;
    }

    .exhibit-grid--masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .exhibit-grid--masonry .exhibit-grid__image-wrap {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 560px) {
    .exhibit-grid--masonry {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Phase B/C/D — Catalogues + Home Cinematic Layer
   ============================================================ */

/* Page Hero - Mosaic Variant (scrolling covers) */
.page-hero--mosaic {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.page-hero__mosaic {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    transform: rotate(-3deg) scale(1.15);
    transform-origin: center center;
}
.mosaic-track {
    display: flex;
    gap: 12px;
    will-change: transform;
}
.mosaic-track--1 {
    animation: mosaic-scroll-left 80s linear infinite;
}
.mosaic-track--2 {
    animation: mosaic-scroll-right 90s linear infinite;
}
.mosaic-track--3 {
    animation: mosaic-scroll-left 70s linear infinite;
}
.mosaic-track img {
    height: 200px;
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
    flex-shrink: 0;
    border-radius: 4px;
}
@keyframes mosaic-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes mosaic-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.page-hero--mosaic .page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}
.page-hero--mosaic .page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.page-hero--mosaic .page-hero__title {
    font-family: var(--font-serif, 'EB Garamond', serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.page-hero--mosaic .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    max-width: 600px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-hero--mosaic {
        min-height: 320px;
    }
    .mosaic-track img {
        height: 100px;
    }
    .page-hero__mosaic {
        gap: 6px;
        padding: 6px;
    }
    .mosaic-track {
        gap: 6px;
    }
    .mosaic-track--1 { animation-duration: 120s; }
    .mosaic-track--2 { animation-duration: 140s; }
    .mosaic-track--3 { animation-duration: 100s; }
}
@media (max-width: 480px) {
    .page-hero--mosaic {
        min-height: 280px;
    }
    .mosaic-track img {
        height: 80px;
    }
    .page-hero__mosaic {
        gap: 4px;
        padding: 4px;
    }
    .mosaic-track {
        gap: 4px;
    }
}

.page-hero--catalogues {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(184, 151, 74, 0.14), transparent 36%),
        radial-gradient(circle at 88% 80%, rgba(184, 151, 74, 0.1), transparent 38%),
        linear-gradient(180deg, #fbf9f4 0%, #f4efe4 100%);
}

.page-hero--catalogues .page-hero__eyebrow {
    color: rgba(10, 10, 10, 0.58);
    letter-spacing: 0.22em;
}

.catalogues-featured {
    display: grid;
    grid-template-columns: minmax(240px, 34%) 1fr;
    gap: clamp(1.3rem, 3vw, 2.8rem);
    align-items: center;
    border: 1px solid rgba(10, 10, 10, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 239, 0.92));
    box-shadow: 0 18px 38px rgba(10, 10, 10, 0.08);
    padding: clamp(1rem, 2.6vw, 2rem);
    margin-bottom: 2.4rem;
}

.catalogues-featured__cover {
    position: relative;
    perspective: 1200px;
}

.catalogues-featured__image {
    width: 100%;
    display: block;
    border-radius: 2px;
    transform-origin: left center;
    box-shadow: 0 18px 42px rgba(10, 10, 10, 0.2);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}

.catalogues-featured:hover .catalogues-featured__image {
    transform: rotateY(-8deg) rotateX(2deg) translateY(-4px);
    box-shadow: 0 22px 46px rgba(10, 10, 10, 0.24);
}

.catalogues-featured__placeholder {
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10, 10, 10, 0.12);
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.66rem;
    background: rgba(255, 255, 255, 0.7);
}

.catalogues-featured__meta {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
}

.catalogues-featured__title {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 0.98;
    margin: 0 0 0.9rem;
}

.catalogues-featured__description {
    margin: 0 0 1.15rem;
    color: var(--grey-600);
    line-height: 1.7;
    max-width: 64ch;
}

.catalogues-featured__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.catalogues-featured__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.2rem;
    border: 1px solid var(--black);
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.catalogues-featured__action:hover {
    transform: translateY(-1px);
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.catalogues-featured__action--ghost {
    background: transparent;
    color: var(--black);
}

.catalogues-grid {
    gap: clamp(1rem, 2.2vw, 1.8rem);
}

.catalogues-grid--publications {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogues-grid .exhibition-item {
    transition: transform 0.38s ease, opacity 0.45s ease;
    transition-delay: calc(var(--stagger-index, 0) * 26ms);
}

.catalogues-grid .exhibition-item:hover {
    transform: translateY(-4px);
}

.exhibition-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.exhibition-item--publication .exhibition-item__image-wrap {
    aspect-ratio: 3 / 4;
}

.exhibition-item--publication .exhibition-item__image {
    transform-origin: left center;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.exhibition-item--publication:hover .exhibition-item__image {
    transform: perspective(1200px) rotateY(-6deg) translateY(-2px);
    box-shadow: 0 14px 34px rgba(10, 10, 10, 0.2);
}

.catalogues-grid--editorial {
    grid-template-columns: 1fr;
}

.catalogues-grid--editorial .exhibition-item--editorial {
    display: grid;
    grid-template-columns: minmax(220px, 32%) 1fr;
    gap: clamp(1rem, 2.4vw, 1.8rem);
    align-items: center;
    border: 1px solid rgba(10, 10, 10, 0.1);
    background: rgba(255, 255, 255, 0.84);
    padding: clamp(0.8rem, 2vw, 1.1rem);
}

.catalogues-grid--editorial .exhibition-item--editorial .exhibition-item__image-wrap {
    margin-bottom: 0;
    height: 100%;
}

.catalogues-grid--editorial .exhibition-item--editorial:nth-child(even) .exhibition-item__image-wrap {
    order: 2;
}

.catalogues-grid--editorial .exhibition-item--editorial:nth-child(even) .exhibition-item__body {
    order: 1;
}

.catalogues-grid--editorial .exhibition-item__dates {
    max-width: 72ch;
}

.catalogues-grid .catalogue-actions {
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-events .section-header--kinetic {
    position: relative;
}

.section-header--kinetic::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.home-event-card .exhibit-card__hero {
    padding: 0;
    background: #0f0f0f;
    box-shadow: 0 14px 34px rgba(10, 10, 10, 0.16);
}

.home-event-grid {
    margin-top: 1.2rem;
}

.home-categories__card--immersive {
    position: relative;
    overflow: hidden;
}

.home-categories__card--immersive::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 0%, rgba(184, 151, 74, 0.13), transparent 45%);
    pointer-events: none;
}

.home-categories__card--immersive:hover {
    box-shadow: 0 18px 36px rgba(10, 10, 10, 0.12);
}

.galleries-grid--cinematic .gallery-card {
    border-color: rgba(255, 255, 255, 0.2);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.galleries-grid--cinematic .gallery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 151, 74, 0.72);
    background: rgba(255, 255, 255, 0.02);
}

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

@media (max-width: 900px) {
    .catalogues-featured {
        grid-template-columns: 1fr;
    }

    .catalogues-grid--editorial .exhibition-item--editorial {
        grid-template-columns: 1fr;
    }

    .catalogues-grid--editorial .exhibition-item--editorial:nth-child(even) .exhibition-item__image-wrap,
    .catalogues-grid--editorial .exhibition-item--editorial:nth-child(even) .exhibition-item__body {
        order: initial;
    }
}

@media (max-width: 640px) {
    .catalogues-grid--publications {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Micro Polish — Mobile/Tablet Stability
   ============================================================ */
@media (max-width: 900px) {
    .page-hero--event {
        min-height: 340px;
        padding-bottom: 2.2rem;
    }

    .page-hero--event .page-hero__title,
    .page-hero--catalogues .page-hero__title {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
        line-height: 0.98;
    }

    .page-hero__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
    }

    .event-filters--floating {
        display: grid;
        gap: 0.45rem;
        border-radius: 0;
        padding: 0.75rem;
    }

    .event-filters--floating .event-filters__group {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.45rem;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .event-filters--floating .event-filters__group::-webkit-scrollbar {
        display: none;
    }

    .event-filters--floating .shop-filters__label {
        flex: 0 0 auto;
        min-width: max-content;
        margin-right: 0.15rem;
    }

    .event-filters--floating .shop-filters__btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .exhibit-card--cinematic .exhibit-card__content {
        padding: 1.25rem 1.2rem;
    }

    .exhibit-card--cinematic .exhibit-card__title {
        font-size: clamp(1.5rem, 5.6vw, 2rem);
    }

    .home-featured-grid {
        gap: 0.9rem;
    }

    .home-featured-grid .card-artwork {
        flex: 0 0 220px;
    }

    .catalogues-featured {
        padding: 0.9rem;
        gap: 1rem;
    }

    .catalogues-featured__description,
    .catalogues-grid--editorial .exhibition-item__dates {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .catalogues-grid--editorial .exhibition-item--editorial {
        padding: 0.8rem;
        gap: 0.85rem;
    }

    .catalogues-grid .catalogue-actions {
        gap: 0.55rem;
    }

    .catalogues-grid .catalogue-actions .section-header__link {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }
}

@media (max-width: 560px) {
    .home-featured-grid {
        gap: 0.75rem;
    }

    .home-featured-grid .card-artwork {
        flex: 0 0 200px;
    }

    .catalogues-featured__actions,
    .catalogues-grid .catalogue-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalogues-featured__action {
        justify-content: center;
    }

    .section-header--kinetic::after {
        width: 76px;
    }
}

/* ---- Artwork Actions Grouped ---- */
.artwork-actions-grouped {
    display: flex;
    flex-direction: column;
    gap: var(--space-md, 1.25rem);
    margin-bottom: var(--space-lg, 2rem);
    max-width: 420px;
}

.artwork-actions-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs, 0.5rem);
    padding: 1rem 1.25rem;
    border: 1px solid var(--grey-200, #e5e5e5);
    background: var(--grey-50, #fafafa);
}

.artwork-actions-group:first-child {
    border-color: var(--grey-300, #d4d4d4);
    background: transparent;
}

.artwork-actions-group__label {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-500, #737373);
    margin-bottom: 0.25rem;
}

.artwork-actions-group__row {
    display: flex;
    gap: var(--space-xs, 0.5rem);
}

.artwork-actions-group__row .btn {
    flex: 1;
    min-width: 0;
}

.artwork-actions-group form {
    display: contents;
}

.artwork-actions-group form button.btn--full {
    width: 100%;
}

/* Long CTA labels (e.g. "Contact the 19th–20th Century Department") must wrap
   inside the button instead of overflowing on narrow screens. */
.artwork-actions-group .btn {
    white-space: normal;
    height: auto;
    min-height: 46px;
    line-height: 1.3;
    text-align: center;
    overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
    .page-hero--event::before,
    .catalogues-featured__image,
    .exhibition-item--publication .exhibition-item__image,
    .exhibit-card--cinematic .exhibit-card__image,
    .galleries-grid--cinematic .gallery-card,
    .home-categories__card--immersive {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* ============================================
   RESTORATIONS
   ============================================ */

.restoration-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
}

.restoration-intro {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary, #555);
}
.restoration-intro p + p { margin-top: 1rem; }

/* Restoration Service Intro — combined text + CTA */
.restoration-service-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: #faf8f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}
.restoration-service-intro__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary, #555);
    margin-bottom: 0.75rem;
}
.restoration-service-intro__text:last-child { margin-bottom: 0; }
.restoration-service-intro__action {
    text-align: center;
    min-width: 220px;
}
.restoration-service-intro__note {
    font-size: 0.72rem;
    color: #999;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* Restoration Service Button */
.restoration-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(180deg, #d4b06a 0%, #b8944f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(212, 176, 106, 0.5);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(184, 151, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.restoration-service-btn:hover {
    background: linear-gradient(180deg, #e0c07a 0%, #c9a55a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 151, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.restoration-service-btn__arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.restoration-service-btn:hover .restoration-service-btn__arrow {
    transform: translateX(4px);
}
.restoration-service-btn--dark {
    background: linear-gradient(180deg, #d4b06a 0%, #b8944f 100%);
    padding: 18px 36px;
    font-size: 0.78rem;
}
.restoration-service-btn--dark:hover {
    background: linear-gradient(180deg, #e0c07a 0%, #c9a55a 100%);
}

/* Bottom CTA */
.restoration-bottom-cta {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
    background: linear-gradient(145deg, #faf8f5 0%, #f4efe6 100%);
    border: 1px solid rgba(184, 151, 74, 0.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.restoration-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 151, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.restoration-bottom-cta__inner {
    position: relative;
    z-index: 1;
}
.restoration-bottom-cta__eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold, #b8974a);
    margin-bottom: 1rem;
}
.restoration-bottom-cta__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.restoration-bottom-cta__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    max-width: 560px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .restoration-service-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .restoration-service-intro__action {
        min-width: unset;
    }
}

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

.restoration-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease;
}
.restoration-card:hover { transform: translateY(-4px); }

.restoration-card__image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
    background: #f5f0eb;
}
.restoration-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.restoration-card:hover .restoration-card__image {
    transform: scale(1.04);
}
.restoration-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.restoration-card:hover .restoration-card__overlay { opacity: 1; }
.restoration-card__cta {
    color: #fff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.restoration-card__info { padding: 1rem 0; }
.restoration-card__artist {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold, #C9A96E);
    margin-bottom: 0.35rem;
}
.restoration-card__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
.restoration-card__ref {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    color: var(--text-secondary, #888);
    margin-top: 0.25rem;
}

.restoration-card--compact {
    flex: 0 0 260px;
    scroll-snap-align: start;
}
.restoration-card--compact .restoration-card__image-wrap {
    aspect-ratio: 4 / 5;
}

.restoration-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e1dc;
}
.restoration-meta__item { text-align: center; }
.restoration-meta__label {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary, #888);
    margin-bottom: 0.25rem;
}
.restoration-meta__value {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
}

.restoration-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary, #555);
    text-align: left;
}
.restoration-description p {
    margin-bottom: 1.2rem;
}
.restoration-description p:last-child {
    margin-bottom: 0;
}
.restoration-description h2,
.restoration-description h3,
.restoration-description h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--grey-900);
}

.restoration-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.restoration-compare__before,
.restoration-compare__after {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #f5f0eb;
}
.restoration-compare__before img,
.restoration-compare__after img {
    width: 100%;
    height: auto;
    display: block;
}
.restoration-compare__label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.restoration-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.restoration-process__item { margin: 0; }
.restoration-process__link {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: #f5f0eb;
}
.restoration-process__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.restoration-process__link:hover .restoration-process__image {
    transform: scale(1.03);
}
.restoration-process__caption {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    color: var(--text-secondary, #888);
    margin-top: 0.5rem;
    font-style: italic;
}

.restoration-cta-section { background: #f9f6f2; }
.restoration-cta {
    text-align: center;
    padding: 3rem 0;
}
.restoration-cta__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
}
.restoration-cta__text {
    font-size: 1rem;
    color: var(--text-secondary, #555);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-button--gold {
    display: inline-block;
    background: var(--gold, #C9A96E);
    color: #fff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.cta-button--gold:hover {
    background: #b8944f;
    transform: translateY(-1px);
}
.cta-button--outline-sm {
    display: inline-block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold, #C9A96E);
    color: var(--gold, #C9A96E);
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease;
}
.cta-button--outline-sm:hover {
    background: var(--gold, #C9A96E);
    color: #fff;
}

@media (max-width: 1024px) {
    .restoration-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .restoration-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .restoration-grid { grid-template-columns: 1fr; gap: 2rem; }
    .restoration-compare { grid-template-columns: 1fr; }
    .restoration-process-grid { grid-template-columns: 1fr; gap: 1rem; }
    .restoration-meta { flex-direction: column; gap: 1rem; }
}

/* ── Scroll container – thin scrollbar (Sotheby's style) ── */
.scroll-container::-webkit-scrollbar,
.exhibit-card__carousel::-webkit-scrollbar,
.related-scroll::-webkit-scrollbar,
.carousel__track::-webkit-scrollbar { height: 4px; }
.scroll-container::-webkit-scrollbar-track,
.exhibit-card__carousel::-webkit-scrollbar-track,
.related-scroll::-webkit-scrollbar-track,
.carousel__track::-webkit-scrollbar-track { background: #f0f0f0; }
.scroll-container::-webkit-scrollbar-thumb,
.exhibit-card__carousel::-webkit-scrollbar-thumb,
.related-scroll::-webkit-scrollbar-thumb,
.carousel__track::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.scroll-container::-webkit-scrollbar-thumb:hover,
.exhibit-card__carousel::-webkit-scrollbar-thumb:hover,
.related-scroll::-webkit-scrollbar-thumb:hover,
.carousel__track::-webkit-scrollbar-thumb:hover { background: #999; }

/* Firefox thin scrollbar */
.scroll-container, .exhibit-card__carousel, .related-scroll, .carousel__track {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f0f0f0;
}

/* ── Horizontal exhibit grid (past exhibitions/fairs) ── */
.exhibit-grid--horizontal {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 0.75rem;
    flex-wrap: nowrap;
}
.exhibit-grid--horizontal .exhibit-grid__item {
    flex: 0 0 300px;
    min-width: 300px;
}

/* ── Currency selector on artwork show page ── */
.artwork-currency-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.artwork-currency-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 4px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.artwork-currency-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.artwork-currency-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   1. Scroll Indicators — horizontal scroll hint
   ═══════════════════════════════════════════ */
.scroll-indicator-wrap {
    position: relative;
}
.scroll-indicator-wrap::before,
.scroll-indicator-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
}
.scroll-indicator-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
}
.scroll-indicator-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.scroll-indicator-wrap.at-start::before { opacity: 0; }
.scroll-indicator-wrap.at-end::after { opacity: 0; }
.scroll-indicator-wrap:not(.at-start)::before { opacity: 1; }

/* Dark section variant */
.section--dark .scroll-indicator-wrap::before {
    background: linear-gradient(to right, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 100%);
}
.section--dark .scroll-indicator-wrap::after {
    background: linear-gradient(to left, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 100%);
}

/* Scroll hint arrow label */
.scroll-hint {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #C9A96E);
    pointer-events: none;
    animation: scrollHintPulse 2s ease-in-out infinite;
    transition: opacity 0.3s;
}
.scroll-indicator-wrap.scrolled .scroll-hint,
.scroll-indicator-wrap.at-end .scroll-hint { opacity: 0; pointer-events: none; }
.scroll-hint svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
@keyframes scrollHintPulse {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* Scroll arrow buttons (left/right) */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.scroll-arrow:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.2);
}
.scroll-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
    stroke-width: 2;
    fill: none;
}
.scroll-arrow--left { left: -6px; }
.scroll-arrow--right { right: -6px; }
.scroll-indicator-wrap.at-start .scroll-arrow--left { opacity: 0; pointer-events: none; }
.scroll-indicator-wrap.at-end .scroll-arrow--right { opacity: 0; pointer-events: none; }
.section--dark .scroll-arrow {
    background: rgba(40,40,40,0.9);
    border-color: rgba(255,255,255,0.1);
}
.section--dark .scroll-arrow svg { stroke: #fff; }

/* Always-visible thin scrollbar for horizontal scroll sections */
.exhibit-grid--horizontal::-webkit-scrollbar { height: 4px; }
.exhibit-grid--horizontal::-webkit-scrollbar-track { background: #eee; border-radius: 2px; }
.exhibit-grid--horizontal::-webkit-scrollbar-thumb { background: #bbb; border-radius: 2px; }
.exhibit-grid--horizontal::-webkit-scrollbar-thumb:hover { background: #999; }
.exhibit-grid--horizontal { scrollbar-width: thin; scrollbar-color: #bbb #eee; }
@media (max-width: 768px) {
    .scroll-arrow { width: 36px; height: 36px; }
    .scroll-arrow--left { left: 4px; }
    .scroll-arrow--right { right: 4px; }
}

/* ═══════════════════════════════════════════
   2. Buy Now — 2-row horizontal carousel
   ═══════════════════════════════════════════ */
.home-buynow-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}
.home-buynow-carousel::-webkit-scrollbar { height: 4px; }
.home-buynow-carousel::-webkit-scrollbar-track { background: #f0f0f0; }
.home-buynow-carousel::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.home-buynow-carousel::-webkit-scrollbar-thumb:hover { background: #999; }
.home-buynow-carousel { scrollbar-width: thin; scrollbar-color: #ccc #f0f0f0; }

.home-buynow-carousel .card-artwork {
    scroll-snap-align: start;
    width: 240px;
    min-width: 240px;
    user-select: none;
}
.home-buynow-carousel .card-artwork__image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--grey-50, #fafafa);
}
.home-buynow-carousel .card-artwork__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .home-buynow-carousel {
        grid-template-rows: 1fr;
        gap: 1rem;
    }
    .home-buynow-carousel .card-artwork {
        width: 200px;
        min-width: 200px;
    }
}

/* ═══════════════════════════════════════════
   3. Departments — 4-image mosaic
   ═══════════════════════════════════════════ */
.home-categories__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 2px;
}
.home-categories__mosaic--2 {
    grid-template-rows: 1fr;
}
.home-categories__mosaic--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.home-categories__mosaic--3 img:first-child {
    grid-row: 1 / -1;
}
.home-categories__mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .home-categories__mosaic { height: 160px; }
}

/* ═══════════════════════════════════════════
   4. About page — Cover hero + floating nav
   ═══════════════════════════════════════════ */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}
.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}
.about-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem var(--container-padding, 2rem);
    color: #fff;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}
.about-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.about-hero__subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
}

/* Floating section nav */
.about-floating-nav {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-200, #e5e5e5);
    padding: 0;
    transition: box-shadow 0.3s;
}
.about-floating-nav.is-stuck {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-floating-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
}
.about-floating-nav__link {
    padding: 14px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary, #666);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.about-floating-nav__link:hover {
    color: var(--black, #1a1a1a);
}
.about-floating-nav__link.active {
    color: var(--black, #1a1a1a);
    border-bottom-color: var(--gold, #C9A96E);
}
@media (max-width: 768px) {
    .about-floating-nav__link {
        padding: 12px 14px;
        font-size: 0.72rem;
    }
}

/* ═══════════════════════════════════════════
   5. Restoration — Video hero cover
   ═══════════════════════════════════════════ */
.restoration-video-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    background: #1a1a1a;
}
.restoration-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}
.restoration-video-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}
.restoration-video-hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
}
.restoration-video-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.restoration-video-hero__subtitle {
    font-size: 1rem;
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   6. Department subtitle
   ═══════════════════════════════════════════ */
.department-subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary, #666);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.department-artist-header {
    font-size: 1.1rem;
    color: var(--text-secondary, #555);
    margin-bottom: 2rem;
}
.department-artist-header strong {
    color: var(--black, #1a1a1a);
}


/* ============================================
   BOOK LIST — Catalogues (2-column vertical grid)
   ============================================ */
.books-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl, 3rem);
}
.book-item {
    display: flex;
    flex-direction: column;
    border: none;
}
.book-item__cover {
    perspective: 1000px;
    margin-bottom: var(--space-md, 1.5rem);
}
.book-item__cover img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    box-shadow: 4px 6px 20px rgba(0,0,0,0.18);
    transition: transform 0.4s var(--ease-out, ease), box-shadow 0.4s ease;
}
.book-item:hover .book-item__cover img {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-4px);
    box-shadow: 8px 14px 32px rgba(0,0,0,0.22);
}
.book-item__cover-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--grey-100, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--grey-400);
}
.book-item__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.book-item__year {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #b8974a);
    margin-bottom: 0.5rem;
}
.book-item__title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--grey-900, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.book-item__author {
    font-size: 0.85rem;
    color: var(--grey-600, #757575);
    margin-bottom: 0.5rem;
    font-style: italic;
}
.book-item__description {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--grey-600, #757575);
    margin-bottom: var(--space-md, 1.5rem);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.book-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}
.book-item__link {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white, #fff);
    background: var(--gold, #b8974a);
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.book-item__link:hover {
    background: var(--gold-light, #ceb273);
    transform: translateY(-1px);
}
.book-item__link--ghost {
    background: transparent;
    color: var(--grey-900, #1a1a1a);
    border: 1px solid var(--grey-300, #e0e0e0);
}
.book-item__link--ghost:hover {
    background: var(--grey-50, #fafafa);
    transform: translateY(-1px);
}
@media (max-width: 640px) {
    .books-list {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   ACCOUNT PAGES
   ============================================ */
.account-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-3xl, 5rem);
    align-items: start;
}

/* Sidebar */
.account-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--grey-600);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.15s ease;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.account-sidebar__link:hover {
    color: var(--grey-900);
    background: var(--grey-50);
}
.account-sidebar__link--active {
    color: var(--grey-900);
    font-weight: 500;
    border-left-color: var(--gold);
    background: var(--grey-50);
}
.account-sidebar__link--logout {
    color: var(--grey-500);
    font-size: 0.82rem;
}
.account-sidebar__link--logout:hover {
    color: #c0392b;
}
.account-sidebar__link svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.account-sidebar__link--active svg {
    opacity: 1;
    color: var(--gold);
}

/* Content area */
.account-content {
    min-width: 0;
}

/* Order cards */
.account-orders {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.account-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border: 1px solid var(--grey-200);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.account-order-card:hover {
    border-color: var(--gold);
    background: var(--grey-50);
}
.account-order-card__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: var(--space-md);
}
.account-order-card__number {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--grey-900);
    margin: 0 0 3px;
}
.account-order-card__date {
    font-size: 0.8rem;
    color: var(--grey-500);
    margin: 0;
}
.account-order-card__total {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin: 0 0 3px;
}
.account-order-card__status {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: var(--grey-100);
    color: var(--grey-600);
    display: inline-block;
}
.account-order-card__status--paid,
.account-order-card__status--completed {
    background: #edf7ed;
    color: #2d5a2d;
}
.account-order-card__status--shipped,
.account-order-card__status--processing {
    background: #edf0f7;
    color: #2d3a5a;
}
.account-order-card__status--cancelled,
.account-order-card__status--refunded {
    background: #f7eded;
    color: #5a2d2d;
}
.account-order-card__arrow {
    color: var(--grey-400);
    font-size: 1.1rem;
    margin-left: var(--space-md);
    transition: transform 0.2s ease, color 0.2s ease;
}
.account-order-card:hover .account-order-card__arrow {
    transform: translateX(3px);
    color: var(--gold);
}

@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .account-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        border-bottom: 1px solid var(--grey-200);
        padding-bottom: var(--space-sm);
    }
    .account-sidebar__link {
        border-left: none;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .account-sidebar__link--active {
        border-left: none;
        background: var(--grey-900);
        color: var(--white);
    }
    .account-sidebar__link--active svg {
        color: var(--white);
    }
    .account-order-card__main {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}


/* Account form elements */
.account-field {
    margin-bottom: var(--space-md, 1.5rem);
}
.account-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 6px;
}
.account-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--grey-200);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--grey-900);
    background: var(--white);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.account-input:focus {
    border-color: var(--gold);
    outline: none;
}
.account-error {
    color: #c0392b;
    font-size: 0.78rem;
    margin: 4px 0 0;
}
.account-alert {
    padding: 12px 20px;
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
    border-left: 3px solid var(--grey-400);
    background: var(--grey-50);
}
.account-alert--success {
    background: #edf7ed;
    border-left-color: #2d5a2d;
    color: #2d5a2d;
}
.account-alert--error {
    background: #f7eded;
    border-left-color: #8b0000;
    color: #8b0000;
}

/* ============================================
   MOBILE UI FIXES — May 2026
   ============================================ */
@media (max-width: 768px) {
    /* 1. Home — Departments: show only preview thumbnails on mobile */
    .home-categories__card {
        min-height: 180px !important;
        padding: 20px !important;
    }
    .home-categories__mosaic {
        max-height: 120px !important;
    }
    .home-categories__mini-grid {
        display: none !important;
    }
    .home-categories__preview {
        max-height: 120px !important;
    }

    /* 2. Galleries — compact cards */
    .gallery-card {
        padding: 16px !important;
    }
    .gallery-card__city {
        font-size: 1rem !important;
    }
    .gallery-card__address {
        font-size: 0.75rem !important;
    }
    .gallery-card__details {
        display: none !important;
    }
    .galleries-grid--cinematic {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* 3. Mobile nav fixes */
    .nav__menu {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px !important;
    }
    .nav__menu.active {
        height: 100% !important;
        max-height: 100vh !important;
        z-index: 9999 !important;
    }

    /* 4. Artwork grid — 2 columns on mobile */
    .artworks-grid,
    .event-artworks-grid,
    [style*="grid-template-columns:repeat(auto-fill, minmax(280px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .card-artwork__artist {
        font-size: 0.7rem !important;
    }
    .card-artwork__title {
        font-size: 0.78rem !important;
    }

    /* Department tabs — horizontal scroll */
    .dept-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        padding-bottom: 4px;
    }
    .dept-tabs__link {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 5. Filters — compact */
    .shop-filters__btn {
        padding: 4px 10px !important;
        font-size: 0.6rem !important;
        letter-spacing: 0.06em !important;
    }
    .event-filters {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap !important;
    }
    .event-filters__group {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }

    /* 6. Catalogues — compact */
    .books-list {
        gap: var(--space-md) !important;
    }
    .book-item {
        grid-template-columns: 80px 1fr !important;
        gap: var(--space-sm) !important;
    }
    .book-item__title {
        font-size: 1rem !important;
    }
    .book-item__description {
        -webkit-line-clamp: 2 !important;
        font-size: 0.82rem !important;
    }
    .book-item__author {
        font-size: 0.78rem !important;
    }
    .book-item__actions {
        margin-top: var(--space-xs) !important;
    }
    .book-item__link {
        font-size: 0.6rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    /* 7. Exhibition detail description — truncated */
    .event-detail__description {
        max-height: 6em;
        overflow: hidden;
        position: relative;
        transition: max-height 0.4s ease;
    }
    .event-detail__description.is-expanded {
        max-height: none;
    }
    .event-detail__read-more {
        display: block;
        margin-top: 8px;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gold, #b8974a);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        font-family: inherit;
    }
}


/* Checkout mobile fixes */
@media (max-width: 768px) {
    .checkout-page__summary-item {
        grid-template-columns: 56px 1fr auto;
        gap: 0.6rem;
    }
    .checkout-page__summary-thumb {
        width: 56px;
        height: 56px;
    }
    .checkout-page__summary-title {
        font-size: 0.78rem;
    }
    .checkout-page__summary-artist {
        font-size: 0.65rem;
    }
    .checkout-page__summary-total {
        font-size: 1.2rem;
    }
}


/* ============================================
   MOBILE UI FIXES — Round 2 (13 points)
   ============================================ */
@media (max-width: 768px) {

    /* === FIX 1: Buy Now — products smaller, 2-column grid === */
    .home-buynow-carousel {
        grid-template-rows: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    .home-buynow-carousel .card-artwork {
        width: 160px !important;
        min-width: 160px !important;
    }
    .home-featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .home-featured-grid .card-artwork__title {
        font-size: 0.78rem !important;
    }
    .home-featured-grid .card-artwork__price {
        font-size: 0.72rem !important;
    }

    /* === FIX 2: Departments — only name, no photos, minimal === */
    .home-categories__mosaic,
    .home-categories__preview,
    .home-categories__mini-grid {
        display: none !important;
    }
    .home-categories__card {
        padding: 16px 20px !important;
        min-height: auto !important;
    }
    .home-categories__title {
        font-size: 1.2rem !important;
        margin: 4px 0 8px !important;
    }
    .home-categories__eyebrow {
        font-size: 0.6rem !important;
    }
    .home-categories__cta {
        font-size: 0.68rem !important;
    }

    /* === FIX 3: Pages overflow fix === */
    body, html {
        overflow-x: hidden !important;
    }
    .container {
        overflow-x: hidden;
    }

    /* === FIX 4: Menu — (handled in 900px block above) === */

    /* === FIX 5: Artworks — 2x2 grid (4 per screen) === */
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .artworks-grid .card-artwork__image-wrap,
    .artworks-grid .artwork-card__image-wrap {
        aspect-ratio: 3 / 4 !important;
    }
    .card-artwork__artist {
        font-size: 0.55rem !important;
        margin-top: 0.4rem !important;
        margin-bottom: 0.2rem !important;
    }
    .card-artwork__title {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
    }

    /* === FIX 6: Department tabs sticky === */
    .dept-tabs {
        position: sticky !important;
        top: var(--nav-height, 80px) !important;
        z-index: 50 !important;
        background: rgba(250, 250, 248, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        border-bottom: 1px solid var(--grey-200) !important;
    }

    /* === FIX 7: Exhibitions/Fairs/Catalogues — 2x2 grid === */
    .exhibit-grid,
    .exhibit-grid--masonry {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .exhibit-grid__image-wrap {
        aspect-ratio: 16 / 10 !important;
    }
    .exhibit-grid__title {
        font-size: 0.78rem !important;
    }
    .exhibit-grid__location,
    .exhibit-grid__dates {
        font-size: 0.58rem !important;
    }
    .exhibitions-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .exhibition-item__title {
        font-size: 0.82rem !important;
    }
    .books-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .book-item__cover img {
        aspect-ratio: 3/4 !important;
    }
    .book-item__title {
        font-size: 0.85rem !important;
    }
    .book-item__description {
        display: none !important;
    }
    .book-item__author {
        font-size: 0.72rem !important;
    }

    /* === FIX 8: Read more — more visible gradient === */
    .event-detail__description {
        max-height: 5em !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .event-detail__description.is-expanded {
        max-height: none !important;
        overflow: visible !important;
    }
    .event-detail__description::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3em !important;
        background: linear-gradient(transparent, var(--off-white, #fafaf8)) !important;
        pointer-events: none !important;
    }
    .event-detail__description.is-expanded::after {
        display: none !important;
    }
    .event-detail__read-more {
        display: block !important;
        margin-top: 4px !important;
        font-size: 0.72rem !important;
        color: var(--gold) !important;
        font-weight: 500 !important;
        padding: 6px 0 !important;
    }
    /* === FIX 11: Artwork/Buy Now page icons — arrow on hover === */
    .artworks-grid .card-artwork {
        position: relative;
    }
    .artworks-grid .card-artwork::after {
        content: '→';
        position: absolute;
        bottom: 8px;
        right: 8px;
        font-size: 0.7rem;
        color: var(--gold);
        opacity: 0;
        transition: opacity 0.2s;
    }
    .artworks-grid .card-artwork:hover::after {
        opacity: 1;
    }

    /* === FIX 13: Artwork detail — horizontal thumbnails on mobile === */
    .artwork-detail__thumbnails {
        display: flex !important;
        overflow-x: auto !important;
        gap: 6px !important;
        padding-bottom: 4px !important;
        -webkit-overflow-scrolling: touch;
    }
    .artwork-detail__thumb {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
    }

    /* === FIX 14: Footer mobile — no cut off === */
    .footer {
        padding: 2rem 0 1.5rem !important;
        overflow: visible !important;
    }
    .footer .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        overflow: visible !important;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem 1rem !important;
    }
    .footer__col:first-child {
        grid-column: 1 / -1;
    }
    .footer__heading {
        font-size: 0.65rem !important;
    }
    .footer__links a {
        font-size: 0.78rem !important;
    }
    .footer__bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    .footer__copy {
        font-size: 0.7rem !important;
        line-height: 1.4;
    }

    /* === FIX 15: Notable sales — 2 columns smaller on mobile === */
    .notable-sales-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .sale-card__body {
        padding: 0.5rem 0.6rem 0.7rem !important;
    }
    .sale-card__artist {
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
    }
    .sale-card__dates {
        font-size: 0.58rem !important;
    }
    .sale-card__title {
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
    }
    .sale-card__medium {
        font-size: 0.58rem !important;
        line-height: 1.35 !important;
    }
    .sale-card__museum {
        font-size: 0.62rem !important;
    }
}

/* Force 2 columns also at very narrow viewports for notable sales */
@media (max-width: 480px) {
    .notable-sales-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }
}


/* ============================================
   MOBILE FILTERS DRAWER — shop & artworks pages
   ============================================ */

/* Hide drawer toggle on desktop */
.mobile-filter-toggle {
    display: none;
}

.shop-filters__close,
.shop-filters__drawer-title {
    display: none;
}

.shop-filters__backdrop {
    display: none;
}

@media (max-width: 768px) {
    /* Filter toggle button — visible on mobile */
    .mobile-filter-toggle {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        margin: 0 0 1rem;
        padding: 0.55rem 1rem;
        background: #fff;
        border: 1px solid var(--grey-200);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--grey-900);
        cursor: pointer;
        font-family: var(--font-body);
    }
    .mobile-filter-toggle:hover {
        border-color: var(--grey-900);
    }

    /* Hide filters by default on mobile */
    .shop-filters {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: min(85vw, 340px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #fff !important;
        padding: 4rem 1.5rem 2rem !important;
        overflow-y: auto !important;
        z-index: 10001 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
        border-radius: 0 !important;
        margin: 0 !important;
    }
    .shop-filters.is-open {
        transform: translateX(0) !important;
    }

    .shop-filters__close {
        display: block !important;
        position: absolute;
        top: 0.75rem;
        right: 1rem;
        background: none;
        border: 0;
        font-size: 1.8rem;
        color: var(--grey-600);
        cursor: pointer;
        line-height: 1;
        padding: 0.25rem 0.5rem;
    }

    .shop-filters__drawer-title {
        display: block !important;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: var(--grey-900);
        margin: 0 0 0.5rem;
    }

    .shop-filters__box {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 1.25rem !important;
    }

    .shop-filters__group {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        gap: 0.4rem !important;
    }

    .shop-filters__label {
        display: block;
        width: 100%;
        font-size: 0.7rem !important;
        margin-bottom: 0.25rem;
        color: var(--grey-500);
    }

    .shop-filters .shop-filters__btn {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 0.55rem 0.8rem !important;
        font-size: 0.78rem !important;
        border-radius: 0 !important;
    }

    .shop-filters__backdrop {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 10000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .shop-filters__backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    /* Artworks grid — force 2 columns with proper sizing (override inline styles) */
    .artworks-grid--responsive,
    .artworks-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}


/* ============================================
   MOBILE OVERFLOW FIXES — critical corrections
   ============================================ */
@media (max-width: 768px) {
    /* CRITICAL: override fixed width 320px on .card-artwork inside grids */
    .artworks-grid .card-artwork,
    .artworks-grid--responsive .card-artwork,
    .exhibitions-list .card-artwork,
    .home-featured-grid .card-artwork {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex-shrink: 1 !important;
    }

    /* Shop page uses .exhibitions-list — force 2 columns with full width children */
    .exhibitions-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100%;
    }

    /* Container horizontal padding — tighter on mobile to give grid more room */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Ensure grids never exceed container width */
    .artworks-grid,
    .artworks-grid--responsive,
    .exhibitions-list,
    .home-featured-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Card images: ensure they fit their column */
    .card-artwork__image-wrap {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   MOBILE MENU — ensure scrollable, no cut off
   ============================================ */
@media (max-width: 900px) {
    .nav__menu.active .nav__link:not(.nav__link--buy) {
        padding: 0.8rem 0.25rem !important;
    }
}


/* ============================================
   SHOP / BUY NOW page — tighter mobile spacing
   ============================================ */
@media (max-width: 768px) {
    /* Filter toggle button — consistent placement */
    .mobile-filter-toggle {
        margin: 0.5rem 0 0.75rem !important;
    }
    /* Dept tabs — reduce bottom margin on mobile */
    .dept-tabs {
        margin-bottom: 0.75rem !important;
    }
}


/* Trust strip inline variant (Buy Now page) */
.shop-trust-strip--inline {
    font-size: 0.78rem;
    color: var(--grey-500);
    margin-bottom: var(--space-lg);
    padding: 0.6rem 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    text-align: center;
}
@media (max-width: 768px) {
    .shop-trust-strip--inline {
        font-size: 0.65rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}


/* ============================================
   FEEDBACK 3 — Mobile fixes (13 points)
   ============================================ */

/* === POINT 1 & 4: Exhibition/Fair artworks — 2 columns on mobile === */
@media (max-width: 768px) {
    .event-artworks-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        overflow-x: visible !important;
        flex-wrap: wrap !important;
    }
    .event-artworks-grid .card-artwork {
        flex: none !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    .event-artworks-grid .card-artwork__image-wrap {
        aspect-ratio: 3/4 !important;
    }
}

/* === POINT 2 & 10: Product/artwork detail — fix cut off and centering === */
@media (max-width: 768px) {
    .artwork-detail__hero {
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
    }
    .artwork-detail__gallery {
        padding: 0 !important;
        overflow: hidden !important;
    }
    .artwork-detail__gallery img,
    .artwork-detail__main-image {
        max-width: 100% !important;
        width: 100% !important;
        object-fit: contain !important;
    }
    .artwork-detail__info {
        padding: 1.5rem 1rem !important;
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    .artwork-detail__specs {
        overflow: hidden !important;
        word-break: break-word !important;
    }
    .artwork-detail__spec-value {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    .artwork-detail {
        overflow-x: hidden !important;
    }
}

/* === POINT 3: Private View intro — truncated with read more === */
.vr-intro__content {
    position: relative;
}
@media (max-width: 768px) {
    .vr-intro__content {
        max-height: 6em;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .vr-intro__content.is-expanded {
        max-height: none !important;
        overflow: visible !important;
    }
    .vr-intro__content::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3em;
        background: linear-gradient(transparent, var(--vr-bg, #0c0b09));
        pointer-events: none;
    }
    .vr-intro__content.is-expanded::after {
        display: none;
    }
    .vr-intro__read-more {
        display: block !important;
        text-align: center;
        margin-top: 8px;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--vr-gold, #b8974a);
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        padding: 6px 0;
    }
}
.vr-intro__read-more {
    display: none;
}

/* === POINT 5: CTA "Contact Us" at end of sections === */
.section-cta-contact {
    text-align: center;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--grey-100);
    margin-top: 3rem;
}
.section-cta-contact__link {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--grey-900);
    color: var(--grey-900);
    text-decoration: none;
    transition: all 0.2s ease;
}
.section-cta-contact__link:hover {
    background: var(--grey-900);
    color: #fff;
}

/* === POINT 7: About floating nav — sticky on mobile === */
@media (max-width: 768px) {
    .about-floating-nav {
        position: sticky !important;
        top: var(--nav-height, 80px) !important;
        z-index: 50 !important;
        background: rgba(250, 250, 248, 0.97) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid var(--grey-200) !important;
        padding: 0 !important;
    }
    .about-floating-nav .container {
        padding: 0 1rem !important;
    }
    .about-floating-nav__link {
        font-size: 0.75rem !important;
        padding: 12px 8px !important;
    }
}

/* === POINT 8: Notable sales — lightbox on click === */
.sale-card__image-wrap {
    cursor: zoom-in;
}

/* === POINT 9: Artwork detail — show more thumbnails visible === */
@media (max-width: 768px) {
    .artwork-detail__thumbnails {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)) !important;
        gap: 6px !important;
        overflow-x: visible !important;
        padding-bottom: 0 !important;
    }
    .artwork-detail__thumb {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        flex-shrink: unset !important;
    }
}

/* === POINT 12: Grid/List toggle buttons === */
.view-toggle {
    display: inline-flex;
    gap: 4px;
    margin-left: auto;
    align-items: center;
}
.view-toggle__btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-200);
    background: transparent;
    color: var(--grey-400);
    cursor: pointer;
    transition: all 0.2s;
}
.view-toggle__btn:hover {
    border-color: var(--grey-400);
    color: var(--grey-700);
}
.view-toggle__btn.active {
    background: var(--grey-900);
    border-color: var(--grey-900);
    color: #fff;
}

/* Hide list view toggle on mobile */
@media (max-width: 768px) {
    .view-toggle {
        display: none;
    }
}

/* List view mode — dedicated layout */
.artworks-list {
    display: flex;
    flex-direction: column;
}
.artworks-list__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.artworks-list__item:hover {
    background: var(--grey-50, #fafaf8);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.artworks-list__thumb {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--grey-50);
}
.artworks-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artworks-list__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.artworks-list__artist {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.artworks-list__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--grey-900);
    line-height: 1.3;
}
.artworks-list__year {
    font-size: 0.78rem;
    color: var(--grey-400);
}
.artworks-list__price {
    font-size: 0.85rem;
    color: var(--grey-700);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .artworks-list__item {
        gap: 1rem;
    }
    .artworks-list__thumb {
        width: 70px;
        height: 70px;
    }
    .artworks-list__title {
        font-size: 0.9rem;
    }
    .artworks-list__price {
        font-size: 0.75rem;
    }
}

/* === POINT 13: Product page trust icons === */
.product-trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}
.product-trust-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--grey-600);
    letter-spacing: 0.02em;
}
.product-trust-icon svg {
    flex-shrink: 0;
    color: var(--gold, #b8974a);
}
@media (max-width: 768px) {
    .product-trust-icons {
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* Product learn-more section icons in summary */
.product-learn-more__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.product-learn-more__title svg {
    color: var(--gold, #b8974a);
}


/* Fix: Event filters (exhibitions/fairs) — drawer on mobile like artworks */
@media (max-width: 768px) {
    .mobile-filter-toggle--event {
        display: inline-flex !important;
    }
    .event-filters-shell {
        z-index: 20 !important;
        position: relative !important;
        margin-top: 0 !important;
    }
    .event-filters--floating {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: min(85vw, 340px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #fff !important;
        padding: 4rem 1.5rem 2rem !important;
        overflow-y: auto !important;
        z-index: 10001 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
        backdrop-filter: none !important;
    }
    .event-filters--floating.is-open {
        transform: translateX(0) !important;
    }
    .event-filters--floating .shop-filters__close {
        display: block !important;
        position: absolute;
        top: 0.75rem;
        right: 1rem;
        background: none;
        border: 0;
        font-size: 1.8rem;
        color: var(--grey-600);
        cursor: pointer;
    }
    .event-filters--floating .event-filters__group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        flex-wrap: wrap !important;
        width: 100%;
    }
    .event-filters--floating .shop-filters__label {
        font-size: 0.7rem !important;
        margin-bottom: 0.5rem;
        color: var(--grey-500);
        display: block;
        width: 100%;
    }
    .event-filters--floating .shop-filters__btn {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid var(--grey-100) !important;
        background: transparent !important;
        color: var(--grey-700) !important;
    }
    .event-filters--floating .shop-filters__btn.active {
        background: var(--gold) !important;
        color: #fff !important;
        border-color: var(--gold) !important;
        font-weight: 500 !important;
    }
}
@media (min-width: 769px) {
    .mobile-filter-toggle--event {
        display: none !important;
    }
    .event-filters--floating .shop-filters__close {
        display: none !important;
    }
}


/* Stories grid — two compact cards per row on mobile (mirrors the newsletter
   layout) so visitors see more press releases / stories at a glance. */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 12px !important;
    }
    .stories-grid .story-card__image {
        aspect-ratio: 4/3;
        margin-bottom: 0.5rem;
    }
    .stories-grid .story-card__category {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }
    .stories-grid .story-card__title {
        font-size: 0.92rem;
        line-height: 1.25;
        margin-bottom: 0.25rem;
    }
    .stories-grid .story-card__excerpt {
        display: none;
    }
    .stories-grid .story-card__meta {
        font-size: 0.62rem;
    }
}
@media (max-width: 420px) {
    .stories-grid {
        gap: 14px 10px !important;
    }
    .stories-grid .story-card__title {
        font-size: 0.82rem;
    }
}


/* Archive section — single column cards */
.archive-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.archive-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--grey-100);
    background: #fff;
    transition: box-shadow 0.3s ease;
}
.archive-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.archive-card__media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--grey-50);
    border-radius: 4px;
}
.archive-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.archive-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-300);
}
.archive-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.archive-card:hover .archive-card__play {
    opacity: 1;
}
.archive-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.archive-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey-900);
    line-height: 1.3;
}
.archive-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--grey-600);
}
.archive-card__link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.archive-card__link:hover {
    color: var(--grey-900);
}
@media (max-width: 768px) {
    .archive-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .archive-card__media {
        aspect-ratio: 16/9;
    }
}


/* ============================================
   Newsletter V2 — Minimal dark strip
   ============================================ */
.newsletter-v2 {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.newsletter-v2__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.newsletter-v2__content {
    flex: 1;
}
.newsletter-v2__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}
.newsletter-v2__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.5;
}
.newsletter-v2__form {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    width: min(420px, 100%);
}
.newsletter-v2__input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-v2__input::placeholder {
    color: rgba(255,255,255,0.3);
}
.newsletter-v2__input:focus {
    border-color: var(--gold, #b8974a);
}
.newsletter-v2__btn {
    padding: 16px 20px;
    background: var(--gold, #b8974a);
    border: 1px solid var(--gold, #b8974a);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.newsletter-v2__btn:hover {
    background: #a07c35;
}

@media (max-width: 768px) {
    .newsletter-v2 {
        padding: 3rem 0;
    }
    .newsletter-v2__inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .newsletter-v2__form {
        width: 100%;
    }
    .newsletter-v2__title {
        font-size: 1.8rem;
    }
}


/* Contact page — gallery cards */
.contact-galleries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.contact-gallery-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--grey-100);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.contact-gallery-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.contact-gallery-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--grey-50);
}
.contact-gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.contact-gallery-card:hover .contact-gallery-card__image img {
    transform: scale(1.03);
}
.contact-gallery-card__info {
    padding: 1.25rem 1.5rem;
}
.contact-gallery-card__city {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
    color: var(--grey-900);
}
.contact-gallery-card__address {
    font-size: 0.88rem;
    color: var(--grey-600);
    margin: 0 0 0.25rem;
    line-height: 1.5;
}
.contact-gallery-card__location {
    font-size: 0.82rem;
    color: var(--grey-500);
    margin: 0 0 0.5rem;
}
.contact-gallery-card__phone,
.contact-gallery-card__email {
    font-size: 0.82rem;
    color: var(--grey-600);
    margin: 0 0 0.2rem;
}
.contact-gallery-card__hours {
    font-size: 0.75rem;
    color: var(--grey-400);
    margin: 0.5rem 0 0;
}
@media (max-width: 768px) {
    .contact-galleries {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Fix: Sign Out button in nav dropdown — match link style exactly */
.nav__dropdown-menu button.nav__dropdown-link {
    position: relative;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: normal;
    color: var(--grey-700);
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: inherit;
    display: block;
    margin: 0;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
}
.nav__dropdown-menu button.nav__dropdown-link:hover {
    color: var(--black);
    background: rgba(184, 151, 74, 0.06);
    padding-left: 1.7rem;
}


/* Fix: AR Viewer button — full width and centered on mobile like other CTAs */
@media (max-width: 768px) {
    .ar-viewer {
        margin: 16px 0 !important;
    }
    .ar-viewer__controls {
        display: flex;
        justify-content: center;
    }
    .ar-viewer__controls .btn,
    .ar-viewer__controls .btn--outline {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
}


/* Fix: Related scroll — scrollable on mobile */
@media (max-width: 768px) {
    .related-scroll {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .related-scroll .card-artwork {
        flex: 0 0 200px !important;
        min-width: 200px !important;
    }
}


/* Fix: Artwork actions — compact on mobile, same width for all */
@media (max-width: 768px) {
    .artwork-actions-grouped {
        max-width: 100% !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    .artwork-actions-group {
        padding: 0.75rem 1rem !important;
    }
    .artwork-actions-group__row {
        gap: 0.5rem !important;
    }
    .artwork-actions-group__row .btn {
        padding: 10px 8px !important;
        font-size: 0.65rem !important;
    }
    /* AR viewer same max-width as actions */
    .ar-viewer {
        max-width: 100% !important;
    }
}

/* ============================================
   Search Modal — Spotlight-style search
   ============================================ */
.nav__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__search-btn:hover {
    opacity: 1;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.search-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.search-modal__container {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 70vh;
    display: flex;
    flex-direction: column;
}
.search-modal.is-open .search-modal__container {
    transform: translateY(0) scale(1);
}
.search-modal__input-wrap {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 12px;
}
.search-modal__icon {
    flex-shrink: 0;
    color: var(--grey-400);
}
.search-modal__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--grey-900);
    background: transparent;
    letter-spacing: -0.01em;
}
.search-modal__input::placeholder {
    color: var(--grey-400);
}
.search-modal__kbd {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--grey-100);
    color: var(--grey-500);
    border: 1px solid var(--grey-200, #e5e5e5);
    letter-spacing: 0.04em;
}
.search-modal__results {
    overflow-y: auto;
    max-height: calc(70vh - 60px);
    padding: 8px 0;
}
.search-modal__empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--grey-400);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}
.search-modal__loading {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}
.search-modal__spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--grey-200, #e5e5e5);
    border-top-color: var(--grey-700);
    border-radius: 50%;
    animation: searchSpin 0.6s linear infinite;
}
@keyframes searchSpin {
    to { transform: rotate(360deg); }
}
.search-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.search-modal__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.12s;
    cursor: pointer;
}
.search-modal__item:hover,
.search-modal__item.is-active {
    background: var(--grey-50, #f9f9f9);
}
.search-modal__item-image {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-modal__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-modal__item-image--placeholder {
    font-size: 0.6rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
}
.search-modal__item-body {
    flex: 1;
    min-width: 0;
}
.search-modal__item-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--grey-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
}
.search-modal__item-subtitle {
    font-size: 0.75rem;
    color: var(--grey-500);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
}
.search-modal__item-badge {
    flex-shrink: 0;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    font-family: 'Inter', sans-serif;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--grey-50, #f9f9f9);
    border: 1px solid var(--grey-200, #e5e5e5);
}
.search-modal__no-results {
    padding: 30px 20px;
    text-align: center;
    color: var(--grey-500);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}
.search-modal__no-results strong {
    display: block;
    margin-bottom: 4px;
    color: var(--grey-700);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .search-modal {
        padding-top: 0;
        align-items: flex-start;
    }
    .search-modal__container {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    .search-modal__input-wrap {
        padding: 14px 16px;
    }
    .search-modal__kbd {
        display: none;
    }
    .search-modal__results {
        max-height: calc(100vh - 56px);
    }
    .search-modal__item {
        padding: 10px 16px;
    }
}

/* Mobile cart icon in nav */
.nav__mobile-cart {
    display: none;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    position: relative;
}
.nav__mobile-cart:hover {
    opacity: 1;
}
.nav__mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #1a1a1a;
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
@media (max-width: 900px) {
    .nav__mobile-cart {
        display: flex;
    }
}

/* ============================================================
   FINAL MOBILE HERO FIX — absolute last in file, max specificity
   ============================================================ */
@media (max-width: 900px) {
    .hero .hero__slide .hero__content {
        position: absolute !important;
        top: auto !important;
        bottom: 4.5rem !important;
        left: 1.5rem !important;
        right: 1.5rem !important;
        transform: none !important;
        text-align: left !important;
        max-width: none !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero .hero__slide .hero__content .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.6rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.01em !important;
        margin-bottom: 0.5rem !important;
        word-break: break-word !important;
    }
    .hero .hero__slide .hero__content .hero__subtitle {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        max-width: 90% !important;
        margin: 0 !important;
    }
    .hero .hero__slide .hero__content .hero__label {
        font-size: 0.6rem !important;
        margin-bottom: 0.4rem !important;
    }
    .hero .hero__slide .hero__content .hero__cta {
        margin-top: 1rem !important;
        padding: 0.75rem 1.8rem !important;
        font-size: 0.6rem !important;
    }
    .hero .hero__nav {
        left: 1.5rem !important;
        right: auto !important;
        bottom: 1.5rem !important;
        transform: none !important;
    }
}
@media (max-width: 420px) {
    .hero .hero__slide .hero__content {
        bottom: 4rem !important;
        left: 1.2rem !important;
        right: 1.2rem !important;
    }
    .hero .hero__slide .hero__content .hero__title {
        font-size: clamp(1.5rem, 7.5vw, 2rem) !important;
    }
    .hero .hero__slide .hero__content .hero__subtitle {
        font-size: 0.75rem !important;
    }
    .hero .hero__slide .hero__content .hero__cta {
        padding: 0.65rem 1.4rem !important;
        font-size: 0.56rem !important;
    }
    .hero .hero__nav {
        left: 1.2rem !important;
        bottom: 1.2rem !important;
    }
}

/* ============================================================
   Notable Sales Carousel (homepage)
   ============================================================ */
.notable-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.notable-carousel__track {
    display: flex;
    gap: 28px;
    width: max-content;
    /* Fallback only — initNotableCarousel() overrides this with a duration
       computed from the track width so the speed is constant regardless of
       how many notable sales there are. */
    animation: notable-scroll 120s linear infinite;
    will-change: transform;
}
.notable-carousel:hover .notable-carousel__track {
    animation-play-state: paused;
}
@keyframes notable-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.notable-carousel__item {
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.notable-carousel__image-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--grey-50, #fafafa);
    margin-bottom: 1rem;
}
.notable-carousel__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.notable-carousel__item:hover .notable-carousel__image-wrap img {
    filter: grayscale(0%);
    transform: scale(1.04);
}
.notable-carousel__body {
    text-align: left;
}
.notable-carousel__artist {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold, #b8974a);
    margin-bottom: 0.3rem;
}
.notable-carousel__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--grey-900, #1a1a1a);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
.notable-carousel__museum {
    font-size: 0.78rem;
    color: var(--grey-500, #888);
    line-height: 1.5;
}
@media (max-width: 768px) {
    /* On mobile the auto-scrolling marquee is replaced by a native, finger
       swipeable horizontal scroller so visitors can browse at their own pace. */
    .notable-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .notable-carousel::-webkit-scrollbar {
        display: none;
    }
    .notable-carousel__track {
        gap: 16px;
        animation: none !important;
        width: max-content;
        padding: 0 16px;
    }
    /* The track holds two copies of the list for the desktop infinite loop;
       with manual scrolling that would show every work twice, so hide the
       duplicated (aria-hidden) set on mobile. */
    .notable-carousel__item[aria-hidden="true"] {
        display: none;
    }
    .notable-carousel__item {
        width: 200px;
        scroll-snap-align: start;
    }
    .notable-carousel__title {
        font-size: 0.92rem;
    }
}


/* ============================================================
   Buy Now promotional banner — subtle, dismissible, bottom-right
   ============================================================ */
.buynow-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 360px;
    max-width: calc(100vw - 32px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px 16px 18px;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.28);
    transform: translateY(170%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.4s;
}
.buynow-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.buynow-banner__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    text-decoration: none;
    color: #fff;
}
.buynow-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}
.buynow-banner__text strong {
    color: var(--gold, #b8974a);
    font-weight: 500;
}
.buynow-banner__cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #b8974a);
}
.buynow-banner__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.buynow-banner__close:hover {
    color: #fff;
}
@media (max-width: 600px) {
    .buynow-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 14px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .buynow-banner {
        transition: opacity 0.3s ease, visibility 0.3s ease;
        transform: none;
    }
}


/* ── Exhibitions / Fairs — search by title or date ── */
.event-filters__group--search {
    flex: 1 1 auto;
    min-width: 220px;
}
.event-search__input {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    padding: 9px 12px;
    border: 1px solid var(--grey-300, #d4d4d4);
    background: var(--white, #fff);
    color: var(--grey-900, #1a1a1a);
    width: 100%;
    max-width: 320px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease;
}
.event-search__input:focus {
    border-color: var(--gold, #b8974a);
}
.event-search__input::placeholder {
    color: var(--grey-400, #999);
}
@media (max-width: 768px) {
    .event-search__input { max-width: none; }
}


/* ============================================================
   Wishlist
   ============================================================ */
.wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wishlist-btn__icon {
    flex-shrink: 0;
    transition: fill 0.2s ease;
}
.wishlist-btn.is-active {
    border-color: var(--gold);
    color: var(--gold);
}
.wishlist-btn.is-active .wishlist-btn__icon {
    fill: var(--gold);
}
.wishlist-btn[disabled] {
    opacity: 0.6;
    cursor: progress;
}

/* Wishlist page */
.wishlist-empty {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.7;
}
.wishlist-empty a {
    color: var(--gold);
    border-bottom: 1px solid var(--grey-300);
}
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.wishlist-card {
    display: flex;
    flex-direction: column;
}
.wishlist-card__image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--grey-100);
    margin-bottom: 0.85rem;
}
.wishlist-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.wishlist-card:hover .wishlist-card__image img {
    transform: scale(1.04);
}
.wishlist-card__artist {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.wishlist-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}
.wishlist-card__title a {
    color: var(--grey-900);
    text-decoration: none;
}
.wishlist-card__price {
    font-size: 0.9rem;
    color: var(--grey-700);
    margin-bottom: 0.6rem;
}
.wishlist-card__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}
.wishlist-card__view {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-900);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    text-decoration: none;
}
.wishlist-card__remove {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
    transition: color var(--duration-fast) var(--ease-out);
}
.wishlist-card__remove:hover {
    color: var(--grey-900);
}
@media (max-width: 900px) {
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .wishlist-card__title { font-size: 0.95rem; }
}

/* Auth prompt modal (guest wishlist) */
.auth-prompt {
    position: fixed;
    inset: 0;
    z-index: 2700;
    display: none;
    align-items: center;
    justify-content: center;
}
.auth-prompt.is-open {
    display: flex;
}
.auth-prompt__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.auth-prompt__panel {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 420px;
    background: #fff;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.auth-prompt__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: var(--grey-500);
    cursor: pointer;
}
.auth-prompt__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
}
.auth-prompt__text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--grey-600);
    margin-bottom: 1.5rem;
}
.auth-prompt__dismiss {
    display: block;
    margin: 0.9rem auto 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.auth-prompt__dismiss:hover {
    color: var(--grey-900);
}


/* ============================================================
   Sticky product bar (product page)
   ============================================================ */
.sticky-product-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grey-200);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    pointer-events: none;
}
.sticky-product-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-product-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 10px 0;
}
.sticky-product-bar__info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.sticky-product-bar__thumb {
    width: 46px;
    height: 46px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--grey-100);
}
.sticky-product-bar__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.sticky-product-bar__artist {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}
.sticky-product-bar__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.1;
    color: var(--grey-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
}
.sticky-product-bar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.sticky-product-bar__price {
    font-size: 0.95rem;
    color: var(--grey-900);
    white-space: nowrap;
}
.sticky-product-bar__form {
    margin: 0;
}
.sticky-product-bar .btn {
    white-space: nowrap;
    padding: 0.62rem 1.5rem;
    min-height: 0;
    height: auto;
}
@media (max-width: 768px) {
    .sticky-product-bar__artist { display: none; }
    .sticky-product-bar__title { font-size: 0.85rem; max-width: 44vw; }
    .sticky-product-bar__price { display: none; }
    .sticky-product-bar__thumb { width: 40px; height: 40px; }
    .sticky-product-bar .btn { padding: 0.55rem 1.05rem; font-size: 0.62rem; }
    .sticky-product-bar__inner { padding: 8px 0; }
}


/* ============================================================
   Shop — category strip, toolbar & filter form
   ============================================================ */
.shop-cat-strip {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.75rem;
    scrollbar-width: none;
}
.shop-cat-strip::-webkit-scrollbar { display: none; }
.shop-cat-card {
    flex: 0 0 auto;
    width: 104px;
    text-align: center;
    text-decoration: none;
}
.shop-cat-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline-color 0.2s ease, transform 0.2s ease;
    margin: 0 auto 0.6rem;
}
.shop-cat-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-cat-card__thumb--all {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--grey-500);
}
.shop-cat-card:hover .shop-cat-card__thumb {
    transform: translateY(-2px);
}
.shop-cat-card--active .shop-cat-card__thumb {
    outline-color: var(--gold);
}
.shop-cat-card__label {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
    color: var(--grey-600);
}
.shop-cat-card--active .shop-cat-card__label {
    color: var(--grey-900);
    font-weight: 500;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}
.shop-toolbar__count {
    font-size: 0.85rem;
    color: var(--grey-600);
    margin: 0;
}
.shop-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.shop-toolbar .mobile-filter-toggle {
    margin: 0 !important;
}

/* Filter form fields */
.shop-filters__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.shop-filters__field-label {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.shop-filters__select {
    padding: 9px 12px;
    border: 1px solid var(--grey-200);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--grey-900);
    min-width: 170px;
    cursor: pointer;
}
.shop-filters__range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-filters__range-input {
    width: 110px;
    padding: 9px 12px;
    border: 1px solid var(--grey-200);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--grey-900);
}
.shop-filters__range-sep {
    color: var(--grey-400);
}
.shop-filters__apply-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    align-self: flex-end;
}
.shop-filters__reset {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-decoration: none;
}
.shop-filters__reset:hover {
    color: var(--grey-900);
}
.shop-filters__apply {
    padding: 0.6rem 1.6rem;
    min-height: 0;
    height: auto;
}

@media (max-width: 768px) {
    .shop-cat-card,
    .shop-cat-card__thumb {
        width: 84px;
    }
    .shop-cat-card__thumb {
        height: 84px;
    }
    .shop-cat-card__label {
        font-size: 0.68rem;
    }
    .shop-filters__field {
        width: 100%;
    }
    .shop-filters__select,
    .shop-filters__range-input {
        width: 100%;
        min-width: 0;
    }
    .shop-filters__range {
        width: 100%;
    }
    .shop-filters__apply-row {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    .shop-filters__apply {
        flex: 1;
    }
}


/* Legal pages — cookie/privacy tables */
.legal-content .legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
    font-size: 0.88rem;
}
.legal-content .legal-table th,
.legal-content .legal-table td {
    border: 1px solid var(--grey-200, #e5e2dc);
    padding: 0.6rem 0.8rem;
    text-align: left;
    vertical-align: top;
}
.legal-content .legal-table th {
    background: var(--grey-100, #f5f3ee);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.legal-content .legal-table td:last-child {
    white-space: nowrap;
}
@media (max-width: 560px) {
    .legal-content .legal-table { font-size: 0.8rem; }
    .legal-content .legal-table td:last-child { white-space: normal; }
}


/* ============================================
   Mobile menu — refined styling (overrides)
   ============================================ */
@media (max-width: 900px) {
    .nav__menu.active {
        padding: calc(var(--nav-height) + 1rem) 1.75rem 3rem;
    }

    /* Remove every stray decoration/marker (old gold diamond caret, dots) */
    .nav__menu.active .nav__link::before,
    .nav__menu.active .nav__dropdown-menu::before,
    .nav__menu.active .nav__dropdown-menu::after,
    .nav__menu.active .nav__dropdown-link::before {
        content: none !important;
        display: none !important;
    }

    /* Non-expandable links: no trailing pseudo */
    .nav__menu.active > .nav__link::after,
    .nav__menu.active .nav__dropdown-link::after {
        display: none !important;
    }

    .nav__menu.active .nav__link {
        font-size: clamp(1.35rem, 5.5vw, 1.6rem);
        padding: 1.05rem 0.15rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        color: var(--grey-900);
    }
    .nav__menu.active .nav__link--active {
        color: var(--gold);
    }

    /* Single clean chevron on expandable parents (right side) */
    .nav__menu.active .nav__dropdown > .nav__link {
        position: relative;
    }
    .nav__menu.active .nav__dropdown > .nav__link::after {
        content: '' !important;
        display: inline-block !important;
        width: 9px;
        height: 9px;
        border: none !important;
        border-right: 1.5px solid var(--grey-400) !important;
        border-bottom: 1.5px solid var(--grey-400) !important;
        background: none !important;
        position: static !important;
        transform: rotate(45deg);
        transition: transform 0.28s var(--ease-out), border-color 0.2s ease;
        margin: -4px 0.2rem 0 1rem;
    }
    .nav__menu.active .nav__dropdown.is-open > .nav__link {
        color: var(--gold);
        border-bottom-color: transparent;
    }
    .nav__menu.active .nav__dropdown.is-open > .nav__link::after {
        transform: rotate(-135deg);
        border-color: var(--gold) !important;
    }

    /* Submenu links: indented with a subtle accent line */
    .nav__menu.active .nav__dropdown.is-open .nav__dropdown-menu {
        border-left: 2px solid var(--grey-100);
        margin-left: 0.15rem;
    }
    .nav__menu.active .nav__dropdown-link,
    .nav__menu.active button.nav__dropdown-link {
        font-size: 1rem;
        color: var(--grey-500);
        padding: 0.5rem 0 0.5rem 0.9rem;
    }
    .nav__menu.active .nav__dropdown-link:hover,
    .nav__menu.active button.nav__dropdown-link:hover {
        color: var(--gold);
    }

    /* Buy Now button — a touch more breathing room */
    .nav__menu.active .nav__link--buy {
        margin-top: 1.75rem !important;
    }
}
