/* 
 * SANAAR GOLD - LUXURY THEME
 * Colors: Black (#0B0B0B), White (#FFFFFF), Gold (#C9A46C)
 * Fonts: Playfair Display (Headings), Lato (Body)
 */

:root {
    --color-black: #0B0B0B;
    --color-white: #FFFFFF;
    --color-off-white: #F8F8F8;
    --color-gold: #C9A46C;
    --color-text-dark: #222222;
    --color-text-light: #CCCCCC;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Great Vibes', cursive;

    /* ---- Spacing system ---- */
    --spacing-container: 120px;
    /* horizontal padding reference */
    --spacing-section: 120px;
    /* vertical section padding      */
    --spacing-heading-gap: 3rem;
    /* heading → content gap (48px)  */
    --spacing-component: 2rem;
    /* between components (32px)     */
    --spacing-tight: 1.5rem;
    /* tight component gap (24px)    */

    /* ---- Type scale ---- */
    --text-h1: clamp(3rem, 5.5vw, 4rem);
    /* ~64px */
    --text-h2: clamp(2rem, 3.8vw, 2.75rem);
    /* ~44px */
    --text-h3: clamp(1.4rem, 2.2vw, 1.75rem);
    /* ~28px */
    --text-body: 1.125rem;
    /* 18px  */
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ── Body base ── */
body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.75;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
}

/* Hero headline — largest display type */
.hero-title {
    font-size: var(--text-h1);
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-component);
    color: var(--color-white);
}

/* Section H2 — shared across all content sections */
.section-title {
    font-size: var(--text-h2);
    line-height: 1.18;
    margin-bottom: var(--spacing-heading-gap);
    color: var(--color-black);
}

/* Calligraphic accent label above section titles */
.accent-text {
    font-family: var(--font-accent);
    font-size: 1.9rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Section body copy */
.section-desc {
    font-size: var(--text-body);
    color: var(--color-text-dark);
    max-width: 600px;
    margin-bottom: var(--spacing-component);
    font-weight: 300;
    line-height: 1.85;
}

.center-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* UTILS */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    padding: var(--spacing-section) 0;
    position: relative;
    z-index: 10;
    background-color: var(--color-white);
}

/* Soft gradient fade at section bottom — replaces hard border */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.018));
    pointer-events: none;
    z-index: 0;
}


/* Hero — natural scroll, full viewport height */
.hero {
    position: relative;
    z-index: 10;
    background-color: var(--color-black);
    width: 100%;
}


/* Specific section overrides for z-index stacking if needed, 
   but DOM order usually handles it. We just need to ensure backgrounds are set. */

/* Collection Section needs white bg */
/* Collection Section needs white bg */
.collection-section {
    background-color: var(--color-white);
    z-index: 20;
}

/* Why Section — dark luxury gradient */
.why-section {
    background: linear-gradient(160deg,
            #1a1a1a 0%,
            #111111 40%,
            #0d0d0d 70%,
            #161410 100%) !important;
    z-index: 30;
}

/* Corporate needs white */
.corporate-section {
    background-color: var(--color-white);
    z-index: 40;
}

/* Featured needs black */
.featured-section {
    background-color: #000;
    z-index: 50;
    /* Already has height logic */
}

/* Insta needs white */
.insta-section {
    background-color: var(--color-white);
    z-index: 60;
    padding-bottom: 4rem;
    /* Add padding back since min-height is 100vh now */
}

/* Story needs white */
.story-section {
    background-color: var(--color-white);
    z-index: 70;
}

/* Footer — natural flow at bottom */
.footer {
    position: relative;
    z-index: 80;
    background-color: var(--color-white);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-text {
    color: var(--color-black);
    font-weight: 400;
    border-bottom: 1px solid var(--color-black);
    padding: 0 0 5px 0;
}

.btn-text:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-nav {
    border: 1px solid var(--color-black);
    padding: 0.5rem 1.5rem;
}

.btn-nav:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* NAVIGATION */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* HERO SECTION */
.hero {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
}

/* Cinematic bottom fade — hero bleeds into the next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 10, 10, 0.45) 70%,
            rgba(10, 10, 10, 0.82) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fog-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Middle layer: Above video (1), Below text (3) */
    pointer-events: none;
    /* Let clicks pass through to video/buttons if needed */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hero overlay removed — no rgba darkening. Used only by other video sections. */
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    max-width: 800px;
    /* Tighter column = more editorial luxury feel */
    margin-top: -4vh;
    /* Shift content slightly above centre — closer to viewer eye focus */
}

/* Eyebrow label above headline */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    margin-bottom: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.4rem;
    /* Raised from 3.5rem — CTAs now sit higher in focal zone */
    font-weight: 300;
    max-width: 540px;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero CTA — Primary (gold filled) */
.btn-hero-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Hero CTA — Secondary (ghost / outline) */
.btn-hero-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-hero-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* FEATURE VIDEO SECTION — natural scroll */
.feature-video-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    z-index: 15;
    background-color: #000;
}

/* Reuse .video-bg and .video-overlay from Hero if possible, 
   but ensure they are positioned relative to this section */
.feature-video-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.feature-video-section .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Desaturate the red rose slightly so hero remains visual peak */
    filter: saturate(0.62) brightness(0.78);
}

/* Warm cinematic gradient overlay on the feature video */
.feature-video-section .video-overlay {
    background: linear-gradient(160deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(20, 10, 0, 0.28) 50%,
            rgba(0, 0, 0, 0.55) 100%) !important;
    z-index: 2;
}

.feature-video-section .feature-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.white-text {
    color: var(--color-white) !important;
}

.feature-video-section .section-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.feature-video-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}


/* COLLECTION */
.collection-section {
    background-color: var(--color-white);
    padding-top: var(--spacing-section);
}

.mb-medium {
    margin-bottom: 4rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly wider cards */
    gap: 2rem;
}

.collection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-dark);
    /* Smooth lift effect on hover */
    transition: transform 0.45s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background-color: #f4f4f4;
    /* Elevation shadow on hover */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 0.45s ease;
}

.collection-card:hover .card-img-wrapper {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s ease-in-out;
    /* Slower luxury zoom */
    opacity: 0;
    z-index: 1;
}

.card-img.active {
    opacity: 1;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.collection-card:hover .card-img {
    transform: scale(1.08);
    /* Subtle luxury zoom — slower than before */
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.collection-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* WHY SANAARCRAFT SECTION — matte charcoal dark gradient, no video */
.why-section {
    position: relative;
    padding: var(--spacing-section) 0;
    z-index: 30;
    color: var(--color-white);
    overflow: hidden;
    /* Matte charcoal luxury gradient — replaces video texture */
    background: linear-gradient(160deg,
            #1a1a1a 0%,
            #111111 40%,
            #0d0d0d 70%,
            #161410 100%);
    /* Subtle warm dark hint at bottom */
}

/* Hide video layer — not needed with gradient bg */
.why-section .video-bg {
    display: none;
}

.why-section .video-overlay {
    display: none;
}

.why-section::before {
    content: none;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.why-item {
    padding: 1rem;
}

.icon-box {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    color: var(--color-white);
}

.why-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* BRAND STORY */
.story-section {
    position: relative;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    z-index: 70;
    overflow: hidden;
    background-color: var(--color-black);
    /* Fallback color */
}

.story-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.story-section .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Adjust overlay opacity as needed */
    z-index: 1;
}

.story-section .container {
    position: relative;
    z-index: 2;
    /* Content above video */
}

.story-content {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(10px);
    margin-right: auto;
    /* Aligns to left within container */
    text-align: left;
    /* Clean look for side text */
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    /* Reset from absolute */
    top: auto;
    left: auto;
    text-shadow: none;
}

@media (max-width: 768px) {
    .story-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

.story-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

/* FOOTER */
/* FOOTER - REVAMPED */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 0 2rem 0;
    position: relative;
    z-index: 80;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    max-width: 1400px;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.footer-links a {
    color: #f0f0f0;
    /* brighter than #aaa for links */
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
    /* Subtle movement */
}

/* Brand Column */
.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-input::placeholder {
    color: #666;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* CORPORATE SECTION */
.corporate-section {
    background-color: var(--color-white);
    padding: var(--spacing-section) 0;
}

/* Flex parent for 55/45 split layout */
.split-container {
    display: flex;
    align-items: center;
    gap: 5%;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .corporate-text,
    .corporate-image {
        flex: unset !important;
        max-width: 100% !important;
        width: 100%;
    }

    .corporate-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .corporate-image {
        height: 300px;
    }
}

.corporate-text {
    flex: 0 0 42%;
    /* 45% text column */
    padding-right: 4rem;
    max-width: 42%;
}

.corporate-image {
    flex: 0 0 55%;
    /* 55% image column */
    height: 520px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
    max-width: 55%;
}

.corporate-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.corporate-slideshow img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.corporate-slideshow img.slide.active {
    opacity: 1;
}

.btn-dark {
    border-color: var(--color-black);
    color: var(--color-black);
}

.btn-dark:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* FEATURED IMMERSIVE SECTION */
.featured-section {
    min-height: 100vh;
    /* Changed from height to min-height */
    /* Remove 'position: relative' if it conflicts with 'sticky' from .section generic rule */
    /* But .section has sticky. Let's ensure this inherits or overrides correctly. */
    /* If .section definition is applied, it has sticky top 0. */
    /* The issue might be overflow hidden cutting off subsequent sticky sections or z-index. */
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.featured-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.featured-section .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Adjust opacity if needed */
}

.featured-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* INSTAGRAM SECTION REMOVED */

/* GALLERY PREVIEW SECTION */
.gallery-preview-section {
    background-color: var(--color-off-white);
    z-index: 65;
    position: relative;
}

/* Editorial luxury masonry with image size variation */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 0.75rem;
}

/* First image: spans 2 rows for editorial hero treatment */
.gallery-item:first-child {
    grid-row: span 2;
}

/* 5th image (second row flagship): also spans 2 columns */
.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #e8e8e8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Soft hover overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.45s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.08);
}

.mt-medium {
    margin-top: 3rem;
}

.btn-dark-outline {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

.btn-dark-outline:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-video-section {
        height: 60vh;
    }

    .feature-video-section .section-title {
        font-size: 2rem;
    }

    .corporate-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .corporate-image {
        height: 300px;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 200px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        color: var(--color-white);
        z-index: 101;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--color-white);
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        display: flex;
        opacity: 0;
        z-index: 100;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        transition-delay: 0.2s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* DISABLE STICKY SCROLL ON MOBILE - TALL SECTIONS ONLY */
    /* Only disable for collection section so users can scroll to see all cards */
    .collection-section {
        position: relative !important;
        top: auto !important;
        min-height: auto !important;
        /* Allow natural height */
        z-index: 20 !important;
        /* Keep z-index but relative */
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade.delay-1 {
    transition-delay: 0.1s;
}

.reveal-fade.delay-2 {
    transition-delay: 0.2s;
}

.reveal-fade.delay-3 {
    transition-delay: 0.3s;
}

.reveal-fade.delay-4 {
    transition-delay: 0.4s;
}


/* ============================================================
   DIFFERENTIATION SECTION
   ============================================================ */
.diff-section {
    background-color: var(--color-white);
    z-index: 18;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.diff-header {
    margin-bottom: 5rem;
}

.diff-intro {
    font-size: 1.05rem;
    color: #666;
    max-width: 580px;
    line-height: 1.8;
    font-weight: 300;
    margin: 0 auto;
}

/* Equal columns — both tiles same width, visual dominance from colour only */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1160px;
    margin: 0 auto;
}

/* --- Columns --- */
.diff-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Image placeholder --- */
.diff-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
}

/* Actual product images in comparison section */
.diff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.diff-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ececec 0%, #d8d8d8 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    /* Competitor card: desaturated, low contrast */
    filter: grayscale(0.3);
    opacity: 0.85;
}

.diff-img-placeholder--gold {
    background: linear-gradient(145deg, #f5edd8 0%, #deb96a 100%);
    /* SanaarCraft: warmer, more saturated gold */
    filter: none;
    opacity: 1;
}

.diff-img-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 400;
}

.diff-img-placeholder--gold .diff-img-label {
    color: rgba(80, 55, 0, 0.55);
}

/* Badge on image */
.diff-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-radius: 2px;
}

.diff-badge--typical {
    background: rgba(0, 0, 0, 0.07);
    color: #888;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.diff-badge--sanaar {
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
}

/* --- Text content --- */
.diff-col-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.diff-col-title--gold {
    color: var(--color-gold);
}

.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-dark);
    font-weight: 300;
    line-height: 1.5;
}

.diff-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.diff-icon--no {
    color: #bbb;
    stroke: #bbb;
}

.diff-icon--yes {
    color: var(--color-gold);
    stroke: var(--color-gold);
}

/* --- Center divider --- */
.diff-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6rem;
    gap: 0.8rem;
}

.diff-vs-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #ccc, transparent);
}

.diff-vs-badge {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: #aaa;
    background: var(--color-white);
    flex-shrink: 0;
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }

    .diff-divider {
        flex-direction: row;
        padding-top: 0;
        gap: 1rem;
    }

    .diff-vs-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, #ccc, transparent);
    }
}


/* ============================================================
   CRAFTSMANSHIP SECTION
   ============================================================ */
.craft-section {
    background-color: var(--color-off-white);
    z-index: 19;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.craft-header {
    margin-bottom: 5rem;
}

.craft-intro {
    font-size: 1.05rem;
    color: #666;
    max-width: 580px;
    line-height: 1.8;
    font-weight: 300;
    margin: 0 auto;
}

/* --- Quality Blocks (2×2 grid) --- */
.craft-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .craft-blocks {
        grid-template-columns: 1fr;
    }
}

.craft-block {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.craft-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-gold);
    transition: height 0.4s ease;
}

.craft-block:hover::before {
    height: 100%;
}

.craft-block:hover {
    border-color: rgba(201, 164, 108, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.craft-block-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
    color: var(--color-gold);
    /* Consistent icon size, tightened bottom gap */
}

.craft-block-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
}

.craft-block-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.craft-block-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.85;
    font-weight: 300;
}

/* --- Timeline --- */
.craft-timeline-wrap {
    background: var(--color-black);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(201, 164, 108, 0.2);
}

.craft-timeline-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.04em;
}

.craft-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.craft-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 90px;
    flex: 0 0 auto;
}

.craft-step-node {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 164, 108, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 108, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.craft-step-node:hover {
    background: rgba(201, 164, 108, 0.2);
    border-color: var(--color-gold);
}

.craft-step-node svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
}

.craft-step-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.5;
}

.craft-step-arrow {
    color: var(--color-gold);
    font-size: 1.4rem;
    opacity: 0.6;
    padding: 0 0.3rem;
    margin-top: 14px;
    flex-shrink: 0;
    align-self: flex-start;
}

@media (max-width: 900px) {
    .craft-timeline-wrap {
        padding: 2.5rem 1.5rem;
    }

    .craft-timeline {
        gap: 0.5rem;
    }

    .craft-step {
        min-width: 72px;
    }

    .craft-step-node {
        width: 44px;
        height: 44px;
    }

    .craft-step-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .craft-timeline {
        flex-direction: column;
        align-items: center;
    }

    .craft-step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}


/* ============================================================
   B2B PARTNERSHIP SECTION
   ============================================================ */
.b2b-section {
    background-color: #0d0d0d;
    color: var(--color-white);
    z-index: 75;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.b2b-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ---- Trust Indicators Strip ---- */
.b2b-trust-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201, 164, 108, 0.15);
    border-radius: 2px;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
    overflow: hidden;
}

.b2b-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease;
}

.b2b-trust-item:hover {
    background: rgba(201, 164, 108, 0.05);
}

.b2b-trust-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold);
    margin-bottom: 0.25rem;
}

.b2b-trust-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.01em;
}

.b2b-trust-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(201, 164, 108, 0.65);
    font-weight: 400;
}

.b2b-trust-divider {
    width: 1px;
    height: 60px;
    background: rgba(201, 164, 108, 0.15);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .b2b-trust-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .b2b-trust-divider {
        display: none;
    }

    .b2b-trust-item {
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(201, 164, 108, 0.1);
    }
}



.b2b-header .section-title {
    color: var(--color-white);
}

.b2b-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
    margin: 0 auto;
}

/* Audience pills */
.b2b-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.b2b-pill {
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(201, 164, 108, 0.35);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-gold);
    border-radius: 2px;
    background: rgba(201, 164, 108, 0.06);
}

/* Body: two columns */
.b2b-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .b2b-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- Offering cards --- */
.b2b-offerings {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.b2b-offer-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.25s ease;
}

.b2b-offer-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.b2b-offer-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 164, 108, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 108, 0.07);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.b2b-offer-card:hover .b2b-offer-icon {
    background: rgba(201, 164, 108, 0.18);
    border-color: var(--color-gold);
}

.b2b-offer-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
}

.b2b-offer-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.b2b-offer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Lead Capture Form --- */
.b2b-form-wrap {
    background: #161616;
    border: 1px solid rgba(201, 164, 108, 0.18);
    padding: 2.5rem;
}

.b2b-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.b2b-form-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.b2b-form-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    font-weight: 300;
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.b2b-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .b2b-form-row {
        grid-template-columns: 1fr;
    }

    .b2b-form-wrap {
        padding: 1.75rem 1.25rem;
    }
}

.b2b-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.b2b-field label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-body);
    font-weight: 400;
}

.b2b-field input,
.b2b-field select {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.b2b-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A46C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.b2b-field select option {
    background: #1e1e1e;
    color: var(--color-white);
}

.b2b-field input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.b2b-field input:focus,
.b2b-field select:focus {
    border-color: var(--color-gold);
    background: #222;
}

.b2b-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.b2b-submit-btn:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-1px);
}

.b2b-form-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.03em;
}


/* ============================================================
   BRAND ECOSYSTEM SECTION
   ============================================================ */
.ecosystem-section {
    background-color: var(--color-off-white);
    z-index: 76;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.eco-header {
    margin-bottom: 5rem;
}

.eco-intro {
    font-size: 1.05rem;
    color: #666;
    max-width: 540px;
    line-height: 1.8;
    font-weight: 300;
    margin: 0 auto;
}

/* Vertical flow */
.eco-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1080px;
    /* Wider: more breathing room between nodes */
    margin: 0 auto;
    gap: 0;
}

.eco-node {
    width: 100%;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.75rem 3rem;
    /* More generous internal padding */
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    transition: box-shadow 0.35s ease;
}

.eco-node:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
}

.eco-node--wide {
    align-items: center;
    flex-direction: column;
}

/* SanaarCraft node: thicker gold left border = visually dominant */
.eco-node--creator {
    border-left: 5px solid var(--color-gold);
    background: linear-gradient(to right, rgba(201, 164, 108, 0.04) 0%, transparent 40%);
}

.eco-node--retail {
    border-left: 2px solid #ccc;
    opacity: 0.88;
}

.eco-node-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 164, 108, 0.1);
    border: 1px solid rgba(201, 164, 108, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-node-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.eco-node-icon--retail {
    background: rgba(153, 153, 153, 0.1);
    border-color: rgba(153, 153, 153, 0.3);
}

.eco-node-icon--retail svg {
    stroke: #999;
}

.eco-node-text {
    flex: 1;
}

.eco-node-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.3rem;
}

.eco-node-title--retail {
    color: #777;
}

.eco-node-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.eco-node-desc {
    font-size: 0.94rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* Tag pill on creator node */
.eco-node-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

.eco-node-tag--gold {
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 700;
}

/* Partners grid inside the middle node */
.eco-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 700px) {
    .eco-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.eco-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.eco-partner-item:hover {
    background: rgba(201, 164, 108, 0.06);
    border-color: rgba(201, 164, 108, 0.2);
}

.eco-partner-item svg {
    stroke: var(--color-gold);
    opacity: 0.8;
}

.eco-partner-item span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    font-weight: 400;
}

.eco-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 0;
    /* More breathing space between nodes */
}

.eco-arrow-line {
    width: 2px;
    /* Thicker line = more visible */
    height: 48px;
    /* Taller connector */
    background: linear-gradient(to bottom, var(--color-gold), rgba(201, 164, 108, 0.2));
}

.eco-arrow-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(201, 164, 108, 0.7);
    font-weight: 500;
}

.eco-arrow-head {
    color: var(--color-gold);
    font-size: 1.3rem;
    line-height: 1;
}

/* Retail button */
.eco-retail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #bbb;
    color: #777;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    flex-shrink: 0;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    margin-top: 0.25rem;
}

.eco-retail-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .eco-node {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .eco-node-tag {
        position: static;
        align-self: flex-start;
        margin-top: 0.5rem;
    }
}


/* ============================================================
   EMOTIONAL STORY SECTION
   ============================================================ */
.emotional-section {
    background-color: var(--color-white);
    z-index: 77;
    padding: 0;
    min-height: auto;
    position: relative;
}

.emotional-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

@media (max-width: 900px) {
    .emotional-inner {
        grid-template-columns: 1fr;
    }
}

/* Left: copy */
.emotional-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5rem 7rem var(--spacing-container);
    background-color: var(--color-white);
}

@media (max-width: 1200px) {
    .emotional-copy {
        padding: 5rem 3rem;
    }
}

@media (max-width: 900px) {
    .emotional-copy {
        padding: 4rem 1.5rem;
    }
}

.emotional-title {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.75rem;
}

.emotional-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.85;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.emotional-pillars {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.emotional-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.emotional-pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.emotional-pillars strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
}

.emotional-pillars span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    line-height: 1.5;
}

.emotional-cta {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.emotional-cta:hover {
    background-color: transparent;
    color: var(--color-black);
}

/* Right: visual */
.emotional-visual {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f5f0e8;
}

.emotional-img-frame {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.emotional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.emotional-img-frame:hover .emotional-img {
    transform: scale(1.03);
}

.emotional-img-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.35rem 0.9rem;
    backdrop-filter: blur(4px);
}

.emotional-stat-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--color-black);
    padding: 2rem;
    flex-shrink: 0;
}

.emotional-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0.3rem;
}

.emotional-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.emotional-stat-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.emotional-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}


/* ============================================================
   TRUST & SOCIAL PROOF SECTION
   ============================================================ */
.trust-section {
    background-color: var(--color-off-white);
    z-index: 78;
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.trust-header {
    margin-bottom: 4rem;
}

/* -- Stat strip -- */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.5rem 3rem;
    margin-bottom: 5rem;
    gap: 0;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 3rem;
    text-align: center;
}

.trust-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #888;
    font-weight: 400;
}

.trust-stat-line {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-stats {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .trust-stat-line {
        display: none;
    }

    .trust-stat {
        padding: 0.5rem 1rem;
        flex: 0 0 40%;
    }
}

/* -- Testimonials -- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Featured centre card */
.testimonial-card--featured {
    border-color: rgba(201, 164, 108, 0.35);
    background: linear-gradient(145deg, #fffaf3 0%, var(--color-white) 100%);
}

.testimonial-card--featured::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(201, 164, 108, 0.15);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 0.15rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* -- Exhibition & Export -- */
.trust-presence {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 3rem;
}

@media (max-width: 768px) {
    .trust-presence {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
}

.trust-presence-divider {
    background: rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 1px;
}

@media (max-width: 768px) {
    .trust-presence-divider {
        height: 1px;
        width: 100%;
    }
}

.trust-presence-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.trust-presence-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-presence-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: #555;
    font-weight: 300;
    line-height: 1.5;
}

.trust-presence-list svg {
    flex-shrink: 0;
    stroke: var(--color-gold);
}

.trust-export-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-flag-badge {
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    color: #555;
    background: #f9f9f9;
    font-weight: 300;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.trust-flag-badge:hover {
    border-color: var(--color-gold);
    background: rgba(201, 164, 108, 0.05);
}

.trust-flag-badge--more {
    background: var(--color-black);
    color: var(--color-gold);
    border-color: var(--color-black);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.trust-flag-badge--more:hover {
    background: #222;
    border-color: #222;
}


/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
    background-color: #030303;
    /* Darker, more cinematic */
    z-index: 79;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-section) 0;
    min-height: auto;
}

/* Cinematic spotlight — radial glow centred on content */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center,
            rgba(201, 164, 108, 0.08) 0%,
            rgba(201, 164, 108, 0.03) 35%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Grain texture overlay */
.final-cta-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .final-cta-inner {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Content */
.final-cta-content {
    max-width: 520px;
    /* Tighter — forces editorial focus */
}

.final-cta-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
}

.final-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 3rem;
}

.final-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Buttons */
.fcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.fcta-btn:hover {
    transform: translateY(-2px);
}

.fcta-btn--primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
    font-weight: 700;
}

.fcta-btn--primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.fcta-btn--secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.fcta-btn--secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.fcta-btn--outline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fcta-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

/* Decorative gold elements */
.final-cta-deco {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .final-cta-deco {
        display: none;
    }
}

.fcta-deco-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    opacity: 0.25;
    width: 1px;
}

.fcta-deco-line--1 {
    height: 100%;
    left: 50%;
}

.fcta-deco-line--2 {
    height: 100%;
    left: 30%;
    opacity: 0.1;
}

.fcta-deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 108, 0.2);
    box-shadow: 0 0 60px rgba(201, 164, 108, 0.08) inset;
}

.fcta-deco-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 108, 0.15);
}

/* Also add lazy loading to all non-critical images globally */
img[loading="lazy"] {
    content-visibility: auto;
}


/* ============================================================
   GLOBAL LAYOUT CONSISTENCY — DESIGN SYSTEM LAYER
   Applied on top of all sections for uniform rhythm & transitions
   ============================================================ */

/* ----- Heading gap normalisation -----
   Every section's first heading gets consistent breathing room */
.section>.container>.section-title:first-child,
.section>.container>*:first-child>.section-title {
    margin-bottom: var(--spacing-heading-gap);
}

/* ----- Container uniformity -----
   All containers resolve to the same max-width */
.container,
.diff-section .container,
.craft-section .container,
.b2b-section .container,
.ecosystem-section .container,
.emotional-section .emotional-copy,
.trust-section .container,
.final-cta-section .container {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Inter-section gradient bridges -----
   Blends adjacent sections with different backgrounds so the
   page reads as one continuous surface instead of stacked tiles */

/* White → off-white blend (gentle warm fade) */
.collection-section,
.corporate-section,
.insta-section,
.diff-section,
.emotional-section {
    background-image: linear-gradient(to bottom,
            rgba(248, 248, 248, 0) 0%,
            rgba(248, 248, 248, 0) 92%,
            rgba(248, 248, 248, 0.6) 100%);
}

/* Off-white → white blend */
.why-section,
.craft-section,
.ecosystem-section,
.trust-section {
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 90%,
            rgba(255, 255, 255, 0.5) 100%);
}

/* Dark sections: subtle top-edge lightening so they don't cut harshly */
.featured-section,
.story-section,
.b2b-section {
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(0, 0, 0, 0) 8%,
            rgba(0, 0, 0, 0) 92%,
            rgba(0, 0, 0, 0.12) 100%);
}

/* Final CTA — soft top reveal from dark */
.final-cta-section {
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(0, 0, 0, 0) 6%) !important;
}

/* ----- Section heading gap helpers ----- */
.diff-header,
.craft-header,
.b2b-header,
.eco-header,
.trust-header {
    margin-bottom: var(--spacing-heading-gap);
}

/* ----- H3 size in cards/grids -----
   Cards and utility headings that use h3 inherit var(--text-h3) */
.why-item h4,
.diff-col-title,
.b2b-card-title,
.eco-node-title,
.trust-presence-title,
.craft-quality-title {
    font-size: var(--text-h3);
    line-height: 1.25;
}

/* ----- Component gap normalisation -----
   Consistent spacing between sibling components */
.why-grid,
.diff-body,
.craft-quality-grid,
.testimonials-grid,
.b2b-offerings,
.eco-nodes {
    gap: var(--spacing-component);
}

/* ----- Why-section grid spacing ----- */
.why-grid {
    margin-top: var(--spacing-heading-gap);
}

/* ----- Insta-section: override stale 4rem bottom ----- */
.insta-section {
    padding-bottom: var(--spacing-section);
}

/* ----- Footer: consistent padding ----- */
.footer {
    padding-top: calc(var(--spacing-section) * 0.8);
    padding-bottom: calc(var(--spacing-section) * 0.5);
}

/* ============================================================
   MOBILE OVERRIDES — preserve rhythm on small screens
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --spacing-section: 80px;
        --spacing-heading-gap: 2rem;
        --spacing-component: 1.5rem;
        --spacing-tight: 1rem;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    }
}