/* ═══════════════════════════════════════════════════════════
   REH GROUP HOLDINGS — Main Stylesheet
   Family Office Website
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
    --black:       #09090B;
    --deep:        #0D1220;
    --dark:        #111827;
    --card-bg:     #0F1419;
    --gold:        #C4965A;
    --gold-bright: #E2B97A;
    --gold-pale:   #F0D9B5;
    --gold-muted:  rgba(196, 150, 90, 0.18);
    --gold-rule:   rgba(196, 150, 90, 0.35);
    --cream:       #F5F0E8;
    --cream-60:    rgba(245, 240, 232, 0.60);
    --cream-40:    rgba(245, 240, 232, 0.40);
    --cream-20:    rgba(245, 240, 232, 0.20);
    --cream-12:    rgba(245, 240, 232, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 64px;
    /* Always visible — dark glass background from the start */
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold-rule);
    transition: padding 0.4s ease;
}

nav.scrolled {
    padding: 20px 64px;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--gold-bright);
}

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

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ─── MEGA-MENU ─────────────────────────────────────────────── */
.nav-mega {
    position: relative;
    align-self: stretch;    /* stretch <li> to full nav bar height */
    display: flex;
    align-items: center;    /* keep link text vertically centred */
}

.nav-mega > a::after {
    content: ' ∨';
    font-size: 0.5rem;
    opacity: 0.5;
    letter-spacing: 0;
    vertical-align: middle;
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.22s ease;
}

.nav-mega:hover > a::after,
.nav-mega.open > a::after {
    transform: rotate(180deg);
}

.nav-mega-panel {
    position: absolute;
    top: 100%;              /* flush with nav bar bottom — zero gap */
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-rule);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    /* 160ms delay on CLOSE — panel survives brief accidental hover-out */
    transition: opacity 0.22s ease 160ms, visibility 0.22s ease 160ms;
    pointer-events: none;
    z-index: 300;
}

.nav-mega:hover .nav-mega-panel,
.nav-mega.open .nav-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0ms;  /* open instantly, close with the 160ms delay above */
}

.nav-mega-panel a {
    display: block;
    padding: 20px 36px;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    border-bottom: 1px solid var(--cream-12);
}

.nav-mega-panel a:last-child {
    border-bottom: none;
}

.nav-mega-panel a:hover {
    color: var(--gold-bright);
    background: rgba(196, 150, 90, 0.05);
}

/* ─── MOBILE NAV (hamburger + overlay; active < 1100px) ─────── */
.nav-toggle {
    /* Hidden on desktop; shown via @media (max-width: 1100px) below */
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    color: var(--cream);
    transition: color 0.3s ease;
}

.nav-toggle:hover { color: var(--gold-bright); }

.nav-toggle .nav-toggle-bar {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1.5px;
    background: currentColor;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.nav-toggle .nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle .nav-toggle-bar:nth-child(2) { top: 21.25px; }
.nav-toggle .nav-toggle-bar:nth-child(3) { top: 27.5px; }

/* Hamburger morphs into X when overlay is open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    top: 21.25px;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    top: 21.25px;
    transform: rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 400;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.nav-overlay-close:hover { color: var(--gold-bright); }

.nav-overlay-list {
    list-style: none;
    margin: 0;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3.5vh, 32px);
    max-height: 100%;
    overflow-y: auto;
}

.nav-overlay-link {
    display: block;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 16px;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.15rem, 4vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-overlay-link:hover { color: var(--gold-bright); }

body.menu-open { overflow: hidden; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 72% 45%, rgba(196, 150, 90, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 15% 65%, rgba(13, 18, 32, 0.9) 0%, transparent 55%),
        linear-gradient(148deg, #09090B 0%, #0D1220 45%, #09090B 100%);
}

/* Full-bleed art image — right side, blends into hero background */
.hero-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    opacity: 0;
    animation: panelEnter 2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.panel-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Real image with left-to-right gradient blend into background */
.panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    /* Slow cinematic zoom on load */
    animation: slowZoom 18s ease-out 0.5s both;
    /* Gradient mask: gauzy fade — very transparent, drifts in softly from right */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(0, 0, 0, 0.22) 42%,
        rgba(0, 0, 0, 0.52) 62%,
        rgba(0, 0, 0, 0.72) 80%,
        rgba(0, 0, 0, 0.80) 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(0, 0, 0, 0.22) 42%,
        rgba(0, 0, 0, 0.52) 62%,
        rgba(0, 0, 0, 0.72) 80%,
        rgba(0, 0, 0, 0.80) 100%
    );
    opacity: 0.72;
}

@keyframes slowZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 64px;
    max-width: 680px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-pale);
}

.hero-rule {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.hero-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.90);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold-rule);
    transition: gap 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.3s forwards;
}

.hero-cta:hover {
    gap: 22px;
    border-bottom-color: var(--gold-bright);
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}

.hero-scroll span {
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cream-40);
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.5;
    animation: scrollPulse 2.2s ease-in-out 2s infinite;
}

/* ─── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes panelEnter {
    to { opacity: 1; }
}

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

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

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1);    opacity: 0.5; }
    50%       { transform: scaleY(1.15); opacity: 0.85; }
}

/* ─── SCROLL-REVEAL UTILITY ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.32s; }
.reveal.d4 { transition-delay: 0.44s; }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SHARED SECTION TYPOGRAPHY ─────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.display {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.2vw, 3.0rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 28px;
}

.display em {
    font-style: italic;
    color: var(--gold-pale);
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.88);
    font-weight: 300;
}

.gold-rule {
    width: 52px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    margin: 28px 0;
}

/* ─── SECTION WRAPPER ───────────────────────────────────────── */
.section {
    padding: 150px 64px;
    border-top: 1px solid var(--cream-12);
}

/* ─── PHILOSOPHY ────────────────────────────────────────────── */
.philosophy {
    background: var(--black);
}

.philosophy-grid {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center;
}

.philosophy-quote-block {
    border-left: 1px solid var(--gold);
    padding-left: 40px;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: var(--cream);
    opacity: 1;
}

blockquote cite {
    display: block;
    margin-top: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.77rem;
    font-style: normal;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.philosophy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid var(--cream-12);
}

.stat {
    padding: 28px 32px 28px 0;
    border-right: 1px solid var(--cream-12);
    margin-right: 32px;
}

.stat:nth-child(even) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.stat:nth-child(n+3) {
    border-top: 1px solid var(--cream-12);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.88);
}

/* ─── PHILOSOPHY CENTERED ───────────────────────────────────── */
.philosophy-centered {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 0 32px;
}

.stewardship-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 56px;
    letter-spacing: -0.01em;
}

.philosophy-centered .body-text {
    max-width: 640px;
    text-align: center;
}

.philosophy-centered .body-text + .body-text {
    margin-top: 24px;
}

/* ─── VENTURES ──────────────────────────────────────────────── */
.ventures-section {
    background: #0A0D15;
}

.ventures-inner {
    max-width: 1260px;
    margin: 0 auto;
}

.ventures-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 84px;
}

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

.v-card {
    background: #0D1018;
    padding: 56px 46px;
    border-top: 1px solid var(--gold-rule);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.v-card:hover {
    background: #111625;
}

/* Animated gold top bar on hover */
.v-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.v-card:hover::before {
    transform: scaleX(1);
}

.v-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
}

.v-body {
    font-size: 0.97rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.82);
    font-weight: 300;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
    background: #060608;
    border-top: 1px solid var(--cream-12);
    padding: 44px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 64px;
    width: auto;
    opacity: 0.80;
}

.footer-center {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.50);
    text-align: center;
}

.footer-legal {
    font-size: 0.65rem;
    color: rgba(245, 240, 232, 0.50);
    letter-spacing: 0.04em;
    text-align: right;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .section { padding: 120px 48px; }
    nav, nav.scrolled { padding-left: 48px; padding-right: 48px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero-content { padding: 0 48px; }
    .hero-scroll { left: 48px; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 64px; }
    .ventures-header { grid-template-columns: 1fr; }
    footer { padding: 36px 48px; }
}

@media (max-width: 768px) {
    .section { padding: 90px 28px; }
    nav, nav.scrolled { padding: 20px 28px; }
    .hero-content { padding: 0 28px; }
    .hero-headline { font-size: clamp(3rem, 10vw, 4rem); }
    .hero-panel { display: none; }
    .hero-scroll { left: 28px; }
    .ventures-grid { grid-template-columns: 1fr; gap: 2px; }
    footer { flex-direction: column; text-align: center; padding: 32px 28px; }
    .footer-legal { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGE SHARED STYLES
   ═══════════════════════════════════════════════════════════ */

/* Page hero — shorter than the full-screen home hero */
.page-hero {
    position: relative;
    padding: 180px 64px 100px;
    background: var(--black);
    border-bottom: 1px solid var(--cream-12);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 85% 50%, rgba(196, 150, 90, 0.06) 0%, transparent 65%),
        linear-gradient(148deg, #09090B 0%, #0D1220 60%, #09090B 100%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero .eyebrow { margin-bottom: 20px; }

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
}

.page-title em {
    font-style: italic;
    color: var(--gold-pale);
}

.page-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.88);
    font-weight: 300;
    max-width: 580px;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    margin-bottom: 48px;
    transition: gap 0.3s ease;
}
.back-link:hover { gap: 16px; }

/* ═══════════════════════════════════════════════════════════
   COLLECTION PAGE
   ═══════════════════════════════════════════════════════════ */

.collection-page { background: #07080D; }

/* Featured / hero artwork */
.collection-featured {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.collection-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 14s ease;
}

.collection-featured:hover img {
    transform: scale(1.04);
}

.collection-featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 64px 44px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 8px;
}

.featured-meta {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.featured-badge {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-bright);
    border: 1px solid rgba(226, 185, 122, 0.5);
    padding: 7px 16px;
    white-space: nowrap;
}

/* Collection grid */
.collection-grid-section {
    padding: 100px 64px;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--cream-12);
}

.collection-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   COLLECTION CAROUSEL
═══════════════════════════════════════════════════════════ */
.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    background: #0D1018;
    overflow: hidden;
}

.carousel-stage {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 64px 48px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
    color: var(--cream);
    pointer-events: none;
}

.carousel-caption .c-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.carousel-caption .c-artist {
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 4px;
}

.carousel-caption .c-era {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: rgba(245, 240, 232, 0.65);
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 9, 11, 0.55);
    border: 1px solid var(--gold-rule);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    background: rgba(9, 9, 11, 0.8);
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    outline: none;
}

.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold-rule);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot:hover {
    border-color: var(--gold-bright);
    transform: scale(1.15);
}

.carousel-dot.active {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

/* Larger tap zone for mobile dots */
@media (max-width: 768px) {
    .carousel-dot {
        width: 12px;
        height: 12px;
    }
    .carousel-dots { gap: 16px; padding: 8px 0; }
    .carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .carousel-arrow.prev { left: 10px; }
    .carousel-arrow.next { right: 10px; }
    .carousel-caption { padding: 48px 28px 24px; }
    .carousel-caption .c-title { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   COLLECTOR'S VOICE — PULL QUOTE
═══════════════════════════════════════════════════ */
.collectors-voice {
    background: #09090B;
    padding: 120px 80px;
    border-top: 1px solid rgba(196, 150, 90, 0.12);
    border-bottom: 1px solid rgba(196, 150, 90, 0.12);
}

.collectors-voice-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cv-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 3rem;
    opacity: 0.5;
}

.cv-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.0rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: var(--cream);
    margin: 0 0 2rem;
    letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════
   ARTISTS REPRESENTED
═══════════════════════════════════════════════════ */
.artists-section {
    background: #0D0D0F;
    padding: 120px 80px;
}

.artists-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.artists-headline {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1.1;
    margin: 1rem 0 1.6rem;
}

.artists-subhead {
    font-size: 1.0rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.72);
    max-width: 560px;
    margin-bottom: 4rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(196, 150, 90, 0.2);
}

.artist-entry {
    padding: 32px 0;
    border-bottom: 1px solid rgba(196, 150, 90, 0.12);
    border-right: 1px solid rgba(196, 150, 90, 0.12);
    padding-right: 40px;
    padding-left: 4px;
}

.artist-entry:nth-child(3n) {
    border-right: none;
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.0rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 6px;
}

.artist-dates {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-bright);
    margin-bottom: 6px;
}

.artist-note {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   ACQUISITION CTA
═══════════════════════════════════════════════════ */
.acquisition-cta {
    background: #09090B;
    padding: 120px 80px;
    text-align: center;
    border-top: 1px solid rgba(196, 150, 90, 0.12);
}

.acquisition-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.acquisition-headline {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.acquisition-body {
    font-size: 1.0rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 2.8rem;
}

.acquisition-btn {
    display: inline-block;
    padding: 18px 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.acquisition-btn:hover {
    background: var(--gold);
    color: #09090B;
}


/* ═══════════════════════════════════════════════════
   LEADERSHIP PAGE
═══════════════════════════════════════════════════ */
.leadership-section {
    background: #09090B;
    padding: 80px 80px 60px;
}

.leadership-section--officers {
    background: #0D0D0F;
    padding-top: 80px;
    padding-bottom: 100px;
}

.leadership-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.leadership-header {
    margin-bottom: 56px;
}

.leadership-divider {
    height: 1px;
    background: rgba(196, 150, 90, 0.18);
    max-width: 1100px;
    margin: 0 auto;
}

.bio-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(196, 150, 90, 0.1);
    align-items: start;
}

.bio-card:last-child {
    border-bottom: none;
}

.bio-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bio-title {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}

.bio-body {
    font-size: 1.0rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.82);
}

/* ═══════════════════════════════════════════════════
   INQUIRIES LINE — Contact page focal sentence
═══════════════════════════════════════════════════ */
.inquiries-line-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 64px;
    background: var(--black);
}

.inquiries-line {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    line-height: 1.5;
    color: rgba(245, 240, 232, 0.92);
    max-width: 720px;
    margin: 0;
}

.inquiries-line a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 150, 90, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.inquiries-line a:hover {
    color: var(--gold-pale);
    border-color: rgba(196, 150, 90, 0.8);
}


/* Responsive — interior pages */
@media (max-width: 1100px) {
    .leadership-section { padding: 60px 48px; }
    .bio-card { grid-template-columns: 1fr; gap: 20px; }
    .page-hero { padding: 160px 48px 80px; }
    .collection-grid-section { padding: 80px 48px; }
    .collection-featured-caption { padding: 40px 48px 36px; }
    .collectors-voice { padding: 80px 48px; }
    .artists-section { padding: 80px 48px; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-entry:nth-child(3n) { border-right: 1px solid rgba(196, 150, 90, 0.12); }
    .artist-entry:nth-child(2n) { border-right: none; }
    .acquisition-cta { padding: 80px 48px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 140px 28px 64px; }
    .collection-grid-section { padding: 60px 28px; }
    .collection-featured { height: 50vh; }
    .collection-featured-caption { padding: 28px 28px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .collection-grid-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cv-quote { font-size: 1.5rem; }
    .artists-section { padding: 60px 28px; }
    .artists-grid { grid-template-columns: 1fr; }
    .artist-entry { border-right: none !important; }
    .acquisition-cta { padding: 60px 28px; }
    .acquisition-headline { font-size: 2.2rem; }
    .inquiries-line-section { min-height: 50vh; padding: 48px 28px; }
}
