/* IVY Concepts — Premium Interior Design */

:root {
    --bg: #0f0e0c;
    --bg-soft: #1a1814;
    --bg-card: #221f1a;
    --text: #f5f0e8;
    --text-muted: #a89f8f;
    --gold: #c9a962;
    --gold-light: #e0c98a;
    --gold-dark: #8b6914;
    --border: rgba(201, 169, 98, 0.2);
    --glass: rgba(15, 14, 12, 0.75);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --header-h: 88px;
    --radius: 4px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Music Toggle */
.music-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.music-toggle:hover {
    background: var(--gold);
    color: var(--bg);
    transform: scale(1.05);
}

.music-toggle svg { width: 22px; height: 22px; }
.music-toggle .icon-music-off { display: none; }
.music-toggle.muted .icon-music-on { display: none; }
.music-toggle.muted .icon-music-off { display: block; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

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

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

.btn-ghost {
    border-color: rgba(255,255,255,0.3);
    color: var(--text);
}

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

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.2rem; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
    overflow: visible;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    bottom: auto;
    height: calc(var(--header-h) + 40px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.site-header.scrolled::before {
    opacity: 0;
}

.site-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}

.header-inner .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 46%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.logo-img {
    display: block;
    width: min(340px, 15vw);
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

.logo-img-footer {
    width: min(320px, 88vw);
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.logo-text {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.25rem 0;
    cursor: pointer;
}

.nav-dropdown-label {
    flex: 1;
}

.nav-dropdown-arrow {
    flex-shrink: 0;
}

.nav-dropdown-toggle.active,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--gold);
}

.nav-dropdown-toggle svg {
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,14,12,0.75) 0%, rgba(15,14,12,0.4) 50%, rgba(15,14,12,0.6) 100%),
                var(--bg) center/cover no-repeat;
    background-image: linear-gradient(135deg, rgba(15,14,12,0.75) 0%, rgba(15,14,12,0.4) 50%, rgba(15,14,12,0.6) 100%),
                      url(var(--bg));
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active::before {
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: var(--header-h);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

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

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-dots {
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active { background: rgba(201,169,98,0.3); }

.hero-dot-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.1s linear;
}

.hero-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.1s linear;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 4%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.section-head {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-head.centered {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section-head.section-head--left {
    text-align: left;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.section-head.section-head--right {
    text-align: right;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1.5rem;
    transition: gap 0.3s;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse .split-text { order: 2; }
.split-layout.reverse .split-media { order: 1; }

.image-stack {
    position: relative;
}

.image-stack img {
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

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

.rounded-image {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

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

.dynamic-module-grid {
    grid-template-columns: repeat(var(--dyn-cols, 3), 1fr);
}

.dynamic-module-grid--full {
    grid-template-columns: 1fr;
}

.dynamic-module-card-img {
    margin: -2rem -2rem 1.25rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.dynamic-module-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.feature-icon {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 16/10;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,14,12,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.collection-card-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.collection-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

/* Parallax Banner */
.parallax-banner {
    position: relative;
    padding: 120px 0;
    background: var(--bg-soft) center/cover fixed;
    background-image: linear-gradient(rgba(15,14,12,0.8), rgba(15,14,12,0.8)), url(var(--bg));
}

.parallax-content {
    text-align: center;
    max-width: 600px;
}

.parallax-content p {
    color: var(--text-muted);
    margin: 1rem 0 2rem;
}

/* Testimonials */
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    min-height: 200px;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active { display: block; }

.testimonial p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.testimonial footer strong {
    display: block;
    color: var(--gold);
    font-weight: 500;
}

.testimonial footer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dot.active { background: var(--gold); }

/* CTA */
.cta-section { padding: 60px 0 100px; }

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: var(--bg-soft) center/cover no-repeat;
    background-image: linear-gradient(rgba(15,14,12,0.75), rgba(15,14,12,0.9)), url(var(--bg));
    position: relative;
}

.page-hero-short { padding-bottom: 60px; }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: var(--text-muted); margin-top: 1rem; max-width: 500px; }

/* About — Leadership (from ivyconcepts.in/about-us) */
.about-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.1rem;
    max-width: 720px;
    line-height: 1.8;
}

.leadership-section {
    padding-top: 60px;
}

.leader-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.leader-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.leader-block-reverse .leader-photo { order: 2; }
.leader-block-reverse .leader-content { order: 1; }

.leader-photo img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.leader-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
}

.leader-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.leader-role {
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.leader-since {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.leader-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.25rem;
}

.leader-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: justify;
}

.vision-footer {
    background: var(--bg-soft);
    padding: 80px 0;
}

.vision-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.vision-box h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.vision-box > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-pillars {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    display: inline-block;
}

/* Founders */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.founder-image {
    height: 280px;
    background: center/cover no-repeat;
}

.founder-info { padding: 2rem; }

.founder-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.founder-info .role {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.founder-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item .year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stats */
.stats-section {
    background: var(--bg-soft);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item span:last-child {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Collection Page */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-tab {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.collection-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.collection-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.collection-item.hidden { display: none; }

.collection-item-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.collection-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-item:hover .collection-item-image img {
    transform: scale(1.05);
}

.collection-item-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--glass);
    backdrop-filter: blur(8px);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
}

.collection-item-body { padding: 1.5rem; }

.collection-item-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.collection-item-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Events & Media */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.event-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.event-body { padding: 1.5rem; }

.event-date {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.event-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.event-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.media-card:hover img { transform: scale(1.1); }

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,14,12,0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.media-card:hover .media-overlay { opacity: 1; }

.media-type {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.media-overlay h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.gallery-strip {
    padding: 40px 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    animation: galleryScroll 30s linear infinite;
    width: max-content;
}

.gallery-scroll img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail h4 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.contact-detail a:hover { color: var(--gold); }

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

.form-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-msg.success { color: #6abf8a; }
.form-msg.error { color: #e07070; }

/* Footer */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

.footer-top { padding: 60px 0 40px; }

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1rem 0;
    max-width: 280px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.newsletter-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-row input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.85rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit {
    margin-top: 0;
    text-align: right;
}

@media (max-width: 600px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-credit {
        text-align: center;
    }
}

.footer-credit a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-credit a:hover {
    opacity: 0.8;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    :root { --header-h: 82px; }

    .logo-img {
        width: min(300px, 44vw);
        height: auto;
    }

    .feature-grid,
    .process-steps,
    .timeline,
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { display: none; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .media-masonry { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 76px; }

    .container { width: min(1200px, 94%); }

    .header-inner .logo {
        max-width: calc(100% - 56px);
    }

    .logo-img {
        width: min(68vw, 260px);
        height: auto;
    }

    .logo-img-footer {
        width: min(280px, 90vw);
        height: auto;
    }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 0;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        align-items: stretch;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav > a {
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem;
    }

    .main-nav > .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        border: none;
        padding: 0;
        background: transparent;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 16rem;
        padding: 0;
    }

    .nav-dropdown-menu a {
        display: block;
        padding: 0.85rem 1.5rem 0.85rem 2.25rem;
        border-top: 1px solid var(--border);
    }

    .nav-dropdown.open .nav-dropdown-toggle svg,
    .nav-dropdown.open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-toggle { display: flex; }
    .header-actions .btn-outline { display: none; }

    .split-layout,
    .contact-layout,
    .collection-full-grid,
    .collection-grid,
    .founder-grid { grid-template-columns: 1fr; }

    .split-layout.reverse .split-text,
    .split-layout.reverse .split-media { order: unset; }

    .leader-block,
    .leader-block-reverse {
        grid-template-columns: 1fr;
    }

    .leader-block-reverse .leader-photo,
    .leader-block-reverse .leader-content { order: unset; }

    .leader-photo img { max-width: 100%; }

    .feature-grid,
    .process-steps,
    .stats-grid,
    .events-grid { grid-template-columns: 1fr; }

    .cta-box { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    :root { --header-h: 72px; }

    .logo-img {
        width: min(72vw, 240px);
        height: auto;
    }
}
