/* ═══════════════════════════════════════════════════════
   VIMĀNA SANCTUM — Mobile-First Design System
   ═══════════════════════════════════════════════════════ */

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

:root {
    /* ─── Ancestra Color Palette ─── */
    --primary: rgb(196, 75, 54);
    --primary-light: #E8845D;
    --terracotta: rgb(196, 75, 54);
    --terracotta-dark: #9A4230;
    --dark: #2A2A2A;
    --charcoal: #2A2A2A;
    --charcoal-light: #3A3A3A;
    --light-gray: #F5F1E8;
    --cream: #F5F1E8;
    --cream-light: #FDFBF7;
    --white: #FFFFFF;
    --white-15: rgba(255, 255, 255, 0.15);
    --gray: #666666;
    --gold: #DAA520;

    /* ─── Typography ─── */
    --font-heading: 'Cormorant Garamond', serif;
    --font-titles: 'Cormorant Infant', serif;
    --font-body: 'Geist', 'Inter', sans-serif;
    --font-body-serif: 'Crimson Pro', serif;

    /* ─── Font Weights ─── */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* ─── Text Sizes (Fluid) ─── */
    --text-size-paragraph: clamp(1rem, 2vw, 1.125rem);
    /* 16px - 18px */
    --text-size-h5: clamp(1.25rem, 2vw, 1.5rem);
    /* 20px - 24px */
    --text-size-h4: clamp(1.5rem, 2.5vw, 1.75rem);
    /* 24px - 28px */
    --text-size-h3: clamp(1.75rem, 3vw, 2rem);
    /* 28px - 32px */
    --text-size-h2: clamp(2rem, 5vw, 4.5rem);
    /* 32px - 72px (User requested specifically) */
    --text-size-h1: clamp(2.5rem, 8vw, 6rem);
    /* 40px - 96px */

    /* ─── Spacing (Mobile Default) ─── */
    --section-spacing: 60px;
    --inner-space: 20px;
    --inner-space-large: 30px;
    --title-space: 12px;
    --section-padding: 60px 24px;
    --container-max: 1200px;

    /* ─── Border Radius ─── */
    --radius: 12px;
    --big-card-radius: 16px;

    /* ─── Line Heights ─── */
    --line-height-100: 1;
    --line-height-110: 1.1;
    --line-height-120: 1.2;
    --line-height-150: 1.5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    font-size: var(--text-size-paragraph);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    /* Tightened per request */
}

/* Global Image Reset */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container.full-width {
    max-width: 100%;
    padding: 0;
}

/* ─────────────────────────────────────────────────────── 
   UTILITY CLASSES
   ─────────────────────────────────────────────────────── */
.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary);
}

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

.semibold-text {
    font-weight: var(--font-weight-semibold);
}

/* Labels & Badges */
.label {
    color: var(--primary);
    font-size: 14px;
    line-height: var(--line-height-100);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label.italic {
    font-family: var(--font-titles);
    font-size: 22px;
    text-transform: none;
    letter-spacing: normal;
}

.section-badge {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.section-badge-italic {
    font-family: var(--font-titles);
    text-transform: none;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 0;
}

.section-badge-light {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.primary-button {
    gap: 8px;
    border-radius: var(--radius);
    background-color: var(--dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    /* 16px 24px, meets 1rem target */
    min-height: 48px;
    /* Minimum height requirement */
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.primary-button:hover {
    background-color: var(--primary);
}

.btn-brackets {
    background: transparent;
    border: 1px solid var(--white-15);
    color: var(--white);
    padding: 1rem 1.5rem;
    min-height: 48px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-terracotta:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

/* ─────────────────────────────────────────────────────── 
   NAVIGATION (Mobile Default)
   ─────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    padding-top: env(safe-area-inset-top);
    /* Only transition specific properties to avoid jitter on scroll */
    transition: background-color 400ms ease, backdrop-filter 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
    background: rgba(255, 255, 255, 0.03);
    /* Neutral glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* Force stability on mobile browsers */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

/* Light Theme Override (For Light Backgrounds) */
.navbar.light-theme {
    background: rgba(255, 255, 255, 0.6);
    /* Whiter glass */
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

.navbar.light-theme .nav-brand {
    color: var(--charcoal);
}

.navbar.light-theme .nav-tagline {
    color: rgba(42, 42, 42, 0.7);
}

.navbar.light-theme .nav-links a {
    color: var(--charcoal);
}

.navbar.light-theme .nav-links a:hover,
.navbar.light-theme .nav-links a.active {
    color: var(--terracotta);
}

.navbar.light-theme .hamburger-menu span {
    background: var(--charcoal);
}

/* Desktop Island Overrides */
@media (min-width: 1024px) {
    .navbar.light-theme {
        background: linear-gradient(110deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
        border: 1px solid rgba(42, 42, 42, 0.1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-group {
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.nav-brand {
    font-family: var(--font-titles);
    /* Heritage Font */
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
}

/* Mobile Menu Hidden by Default */
.nav-links {
    display: none;
}

/* Mobile Menu Active State (Overlay) */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    /* Sync with Hero Gradient */
    background: radial-gradient(circle at 50% 40%, rgba(196, 75, 54, 0.96) 0%, rgba(154, 66, 48, 0.98) 85%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    animation: fadeIn 0.3s ease-out;
}

.nav-links.active a {
    color: var(--white) !important; /* Force white on mobile overlay */
    font-family: var(--font-titles);
    font-size: 32px;
    font-style: italic;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUpMenu 0.4s ease forwards;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.nav-links.active a:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.active a:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links.active a:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links.active a:nth-child(4) {
    animation-delay: 0.4s;
}

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

/* CTA Button - Mobile Compact */
.nav-cta,
.nav-cta-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--charcoal);
    background: var(--gold);
    border: none;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    min-height: 28px;
    cursor: pointer;
    transition: all 300ms ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-right: 10px;
    /* Spacing from hamburger */
}

.nav-cta-light:hover {
    background: var(--white);
    color: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu (Visible on Mobile) */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    /* Increased for touch target */
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 300ms ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hamburger Active State */
.hamburger-menu.active span {
    background: var(--white) !important; /* Force white when open */
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
    overflow: hidden;
}

/* ─────────────────────────────────────────────────────── 
   DESKTOP NAVIGATION (> 768px)
   ─────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 32px;
        animation: none;
        align-items: center;
    }

    .nav-links a {
        font-family: var(--font-body);
        /* Reset font */
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        font-style: normal;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 1;
        transform: none;
        animation: none;
        text-shadow: none;
        font-weight: 500;
        padding: 0;
        transition: color 0.3s ease;
    }

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

    /* Active State for Scroll Spy */
    .nav-links a.active {
        color: var(--gold);
    }

    /* CTA Visible on Desktop */
    .nav-cta,
    .nav-cta-light {
        display: inline-block;
    }
}

/* ─────────────────────────────────────────────────────── 
   HERO - Depth-Blending Typography (Sandwich Technique)
   ─────────────────────────────────────────────────────── */
.hero-depth-blend {
    min-height: 100dvh;
    /* Rich Gradient: Vignette effect to focus on the center */
    background: radial-gradient(circle at 50% 40%, var(--primary) 0%, var(--terracotta-dark) 85%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Changed from flex-start to center */
    justify-content: flex-start;
    padding: 120px 20px 40px;
    padding-top: max(120px, env(safe-area-inset-top));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    /* Increased top padding from 80px */
    text-align: center;
    /* Changed from left */
    overflow: hidden;
}

/* Noise Texture Overlay */
.hero-depth-blend::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

/* Atmospheric Particles Container */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    filter: blur(1px);
    animation: floatParticle 10s ease-in-out infinite;
}

.particle.p1 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle.p2 {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.particle.p3 {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 60%;
    animation-duration: 18s;
    animation-delay: 4s;
    opacity: 0.3;
}

/* Location Link */
.hero-location {
    position: absolute;
    bottom: 40px;
    right: 20px;
    /* Anchored to the right on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 50;
    animation: fadeInUp 1s ease-out 0.2s both;

    /* Glass Badge Style */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    /* Slightly tighter padding for mobile */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: max-content;
    max-width: 90%;
}

/* Pulsing Indicator */
.hero-location svg {
    color: var(--gold);
    animation: pulseLocation 2s infinite;
}

@keyframes pulseLocation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-location-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    /* Slightly smaller for mobile right-anchor */
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-location:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-location-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Mobile "Magazine Cover" Layout */
.hero-sandwich-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered */
    justify-content: flex-start;
    padding-top: 20px;
}

.hero-product-image {
    position: relative;
    margin-top: 20px;
    width: 95%;
    max-width: 420px;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-left: 0;
    /* Reset margin */
    animation: imageFloatUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
    box-shadow: none;
    background: transparent;
}

.hero-product-image img {
    width: 100%;
    height: auto;
    /* Drop-shadow follows the alpha channel (transparency) of the image */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
    /* NO box-shadow - it would create a rectangular shadow */
    box-shadow: none;
    background: transparent;
    transition: transform 0.5s ease;
}

/* Shared Title Styles */
/* Shared Title Styles */
.hero-title {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: clamp(4.5rem, 18vw, 8rem);
    /* Slightly larger */
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    margin: 10px 0 -40px 0;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    z-index: 5;
    /* Base layer behind image */
    color: var(--gold);
    opacity: 0.8;
    animation: titleRevealMobile 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes titleRevealMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 10px;
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}

/* Pseudo-element for Outline (The "Bun" on top) */
.hero-title::after {
    content: attr(data-outline);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    /* Above the image (which is z-index 10) */
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(218, 165, 32, 0.8);
    /* Stronger gold outline */
    pointer-events: none;
    display: block;
    /* Re-enable */
}

.hero-title-outline {
    display: none;
    /* Only needed for the desktop sandwich effect */
}

.hero-description {
    position: relative;
    z-index: 30;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Back to left align */
    justify-content: flex-start;
    animation: fadeInUp 1s ease-out 0.6s both;

    /* Editorial Line */
    border-left: 2px solid var(--gold);
    margin-left: 40px;
}

.hero-description p {
    max-width: 400px;
    text-align: left;
    /* Back to left align */
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description p em {
    font-family: var(--font-titles);
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
    font-size: 1.15em;
    /* Slightly larger */
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
    /* Subtle gold glow */
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-40%);
        letter-spacing: -10px;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
        letter-spacing: -4px;
        filter: blur(0);
    }
}

@keyframes imageFloatUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

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

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.2;
    }

    80% {
        opacity: 0.4;
    }
}

/* ─────────────────────────────────────────────────────── 
   ABOUT SECTION (Mobile Default)
   ─────────────────────────────────────────────────────── */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.primary-color-bg {
    background-color: var(--primary);
    height: 100px;
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
}

.about-card {
    position: relative;
    z-index: 1;
    background-color: var(--light-gray);
    border-radius: var(--big-card-radius);
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about-photo-block {
    width: 100%;
    height: 300px;
    background-image: url('images/about-asset.jpeg');
    background-position: center;
    background-size: cover;
    position: relative;
    /* Transition for the reveal effect */
    transition: filter 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s ease;
}

/* Initial State: Vintage/Aged Look */
.about-photo-block.reveal-filter {
    filter: sepia(0.8) grayscale(0.4) contrast(0.9);
    transform: scale(0.98);
}

/* Active State: Full Color (Modern) */
.about-photo-block.reveal-filter.active {
    filter: sepia(0) grayscale(0) contrast(1);
    transform: scale(1);
}

.about-photo-text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--light-gray);
    padding: 20px;
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.year-text {
    font-family: var(--font-titles);
    color: var(--primary);
    font-size: 48px;
    line-height: 1;
}

.about-small-paragraph-wrap p {
    font-size: 12px;
    max-width: 120px;
}

.about-block-text-wrap {
    padding: 40px 24px;
}

.about-paragraphs-wrap {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-block-button-wrap {
    margin-top: 30px;
}

/* ─────────────────────────────────────────────────────── 
   FEATURE CARDS (Mobile Default)
   ─────────────────────────────────────────────────────── */
.feature-cards-section {
    padding: 60px 20px;
    background: var(--cream-light);
    text-align: center;
}

.feature-headline {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Smart Grid similar to pillars */
    gap: 2rem;
}

.feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Triangle Masks */
.triangle-mask-left::before,
.triangle-mask-both::before,
.triangle-mask-right::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--terracotta);
    z-index: 2;
    transition: all 0.4s ease;
}

.triangle-mask-both::before {
    background: var(--gold);
    /* Gold accent for the center card */
}

.triangle-mask-left::before {
    top: -8px;
    left: -8px;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.triangle-mask-both::before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.triangle-mask-right::before {
    top: -8px;
    right: -8px;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* Hover effect for triangles */
.feature-card:hover .triangle-mask-left::before,
.feature-card:hover .triangle-mask-both::before,
.feature-card:hover .triangle-mask-right::before {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .triangle-mask-both::before {
    transform: translateX(-50%) scale(1.1);
}

.feature-title {
    font-size: 20px;
    margin: 15px 0 10px;
}

.feature-desc {
    font-size: 16px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-link {
    font-size: 13px;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────── 
   PRODUCT SHOWCASE SECTION (Mobile Default)
   ─────────────────────────────────────────────────────── */
.product-showcase-section {
    background: var(--charcoal);
    padding: 60px 24px;
}

.product-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.product-sidebar {
    color: var(--cream);
    text-align: center;
}

.product-headline {
    font-family: var(--font-titles);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.15;
}

.product-desc {
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Cards Container */
.product-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Individual Product Card */
.product-card {
    background: var(--charcoal-light);
    border: 1px solid var(--white-15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Product Image Wrapper */
/* Product Image Wrapper */
.product-image-wrap {
    position: relative;
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 0;
    /* Removing padding to allow full bleed scroll */
    min-height: 280px;
    overflow: hidden;
    /* Hide scrollbar if custom logic used, but here we want native scroll optionally */
}

/* Gallery Track */
.product-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    /* Add padding back to images if needed, or keep tight */
}

.product-gallery-track::-webkit-scrollbar {
    display: none;
}

.product-gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    scroll-snap-align: center;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
    padding: 0 20px;
    /* Spacing inside snap area */
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    /* Gold arrows */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    /* Flex to center content */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
    /* Remove default padding */
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.product-image-wrap:hover .gallery-nav {
    opacity: 1;
}

/* Mobile specific: Always show arrows or rely on swipe hint? 
   Let's keep hover logic for desktop, maybe always visible on touch devices if we added media query. 
   For now, strictly hover/focus is cleaner. */

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.product-badge-gold {
    background: var(--gold);
    color: var(--charcoal);
}

/* Product Info */
.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-titles);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
    font-style: italic;
}

.product-material {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.product-specs span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 4px;
}

.product-price-row {
    display: flex;
    justify-content: center;
    /* Center the single CTA */
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--white-15);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    cursor: pointer;
}

.product-price {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.price-container:hover .product-price {
    color: var(--white);
}

.price-info-btn {
    background: transparent;
    border: none;
    color: var(--white);
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.price-info-btn:hover,
.price-info-btn:focus {
    opacity: 1;
    color: var(--gold);
}

/* Tooltip */
.price-tooltip {
    position: absolute;
    bottom: 140%;
    /* Above the price */
    left: 0;
    width: 200px;
    background: var(--charcoal);
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10;
    pointer-events: none;
}

.price-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: var(--charcoal);
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transform: rotate(45deg);
}

.tooltip-sub {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.7;
    font-style: italic;
}

/* Show Tooltip on hover/focus */
.price-info-btn:hover+.price-tooltip,
.price-info-btn:focus+.price-tooltip,
.price-tooltip.show {
    /* For potential JS toggle support */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-cta {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-cta:hover {
    color: var(--white);
}

/* ─────────────────────────────────────────────────────── 
   HERITAGE SECTION (Legacy Styles - Kept for Compatibility)
   ─────────────────────────────────────────────────────── */
.heritage-dark-section {
    background: var(--charcoal);
    padding: 60px 24px;
}

.heritage-dark-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.heritage-sidebar {
    color: var(--cream);
    text-align: center;
}

.heritage-headline {
    font-size: 36px;
    color: var(--cream);
    margin-bottom: 20px;
}

.heritage-desc {
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 30px;
}

.heritage-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.heritage-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heritage-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.parallelogram-mask::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.heritage-item-content h3 {
    color: var(--cream);
    font-size: 20px;
    margin-bottom: 10px;
}

.heritage-item-content p {
    color: rgba(245, 241, 232, 0.7);
    font-size: 14px;
}

/* ─────────────────────────────────────────────────────── 
   FOOTER (Mobile Default)
   ─────────────────────────────────────────────────────── */
.footer-dark {
    background: var(--charcoal);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.footer-brand-text {
    font-family: var(--font-titles);
    font-size: 15vw;
    /* Fluid size */
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    opacity: 0.1;
    text-align: center;
    margin: 0 0 10px;
}

.footer-note {
    text-align: center;
    font-size: 12px;
    color: rgba(245, 241, 232, 0.5);
}

/* ─────────────────────────────────────────────────────── 
   FOOTER NEWSLETTER (Parchment Scroll)
   ─────────────────────────────────────────────────────── */
.footer-newsletter {
    max-width: 500px;
    margin: 0 auto 60px;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-titles);
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
    font-style: italic;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.scroll-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 5px;
    border-radius: 4px;
    /* Slight rounding for the center paper */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Edges (The curls) */
.scroll-edge {
    position: absolute;
    top: -5px;
    bottom: -5px;
    width: 15px;
    background: #E8E2D5;
    /* Slightly darker parchment */
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 2px 0 5px rgba(0, 0, 0, 0.2);
}

.scroll-edge.left {
    left: -10px;
}

.scroll-edge.right {
    right: -10px;
}

.scroll-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--charcoal);
    outline: none;
}

.scroll-input-wrapper input::placeholder {
    color: rgba(42, 42, 42, 0.5);
    font-style: italic;
}

.newsletter-submit {
    background: var(--terracotta);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--terracotta-dark);
    transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════
   TABLET BREAKPOINT (min-width: 768px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    :root {
        --section-padding: 80px 40px;
    }

    /* Navigation - Handled in main block */
    .nav-tagline {
        display: block;
    }

    /* Hero */
    .hero-depth-blend {
        padding: 100px 40px 60px;
    }

    /* Feature Grid - Handled by smart grid (auto-fit) */
    .feature-image img {
        height: 200px;
    }

    .feature-card-center .feature-image img {
        height: 240px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
}


/* ═══════════════════════════════════════════════════════
   DESKTOP BREAKPOINT (min-width: 1024px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    :root {
        --text-size-paragraph: 16px;
        /* --text-size-h1 handled by clamp */
        --section-spacing: 120px;
        --big-card-radius: 24px;
    }

    .nav-links {
        gap: 28px;
    }

    .hero-depth-blend {
        align-items: flex-start;
        text-align: left;
    }

    /* Island Navbar */
    .navbar {
        top: 20px;
        left: 0;
        right: 0;
        width: 92%;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 100px;
        background: linear-gradient(110deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        padding: 8px 24px;
    }

    /* Hero - Restore the Sandwich Effect */
    /* Hero - Grid Layout for Automatic Adjustment */
    .hero-sandwich-container {
        height: 80vh;
        min-height: 600px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        /* Left (Desc), Center (Image/Title), Right */
        grid-template-rows: 1fr;
        align-items: center;
        justify-items: center;
        padding: 0 40px;
        position: relative;
    }

    .hero-title {
        position: relative;
        /* Keep relative within grid */
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
        margin: 0;
        /* Desktop Interwoven Look - Massive Size */
        font-size: 250px;
        font-family: 'Cinzel', serif;
        left: auto;
        /* Reset position */
        top: auto;
        right: auto;
        transform: none;
        line-height: 1;
        z-index: 12;
        opacity: 1;
        /* Reset opacity so children can handle it */
        /* Per user preference */
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: none;
        /* Disable mobile animation */

        /* ADJUST THIS VALUE TO MOVE TEXT LEFT/RIGHT */
        padding-left: 10px;
    }

    /* Staggered Letter Animation (Desktop) */
    .hero-title span {
        display: inline-block;
        opacity: 0;
        transform: translateY(60px) rotate(2deg);
        filter: blur(10px);
        animation: letterRise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        animation-delay: calc(0.1s * var(--i));
    }

    @keyframes letterRise {
        to {
            opacity: 0.9;
            transform: translateY(0) rotate(0deg);
            filter: blur(0);
        }
    }

    .hero-title::after {
        display: block;
        /* Show outline on desktop */
        opacity: 0;
        animation: fadeIn 1s ease-out 1.2s forwards;
        /* Fade in outline after letters */
    }

    .hero-product-image {
        position: relative;
        /* Reset absolute */
        grid-column: 1 / -1;
        /* Also spans width to center perfectly */
        grid-row: 1;
        width: 100%;
        left: 420px;
        max-width: 500px;
        z-index: 10;
        /* Image in front of title */
        margin: 0;
        transform: translateY(20px);
        /* Slight adjustment for optical center */
        pointer-events: none;
        /* Let clicks pass through if needed */
    }

    .hero-description {
        position: absolute;
        top: 65%;
        left: 160px;
        text-align: left;
        max-width: 320px;
        z-index: 20;
    }

    .hero-description p {
        text-align: left;
    }

    .hero-location {
        left: auto;
        right: 40px;
        transform: none;
        bottom: 50px;
        /* Lower on desktop for better balance */
    }

    .hero-location:hover {
        transform: translateY(-5px);
    }

    /* Compact Footer (Desktop Only) */
    .about-card {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        padding: 60px 40px;
        margin-top: -80px;
        /* Overlap effect */
        gap: 40px;
    }

    .about-photo-block {
        width: 55%;
        max-width: 700px;
        min-height: 600px;
        border-radius: var(--radius);
        background-position: 65% center;
        /* Shifted focus to the right */
    }

    .about-photo-text-wrap {
        clip-path: none;
        width: 180px;
        padding: 20px 15px;
        bottom: 0;
        left: 0;
        position: absolute;
        background: rgba(245, 241, 232, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top-right-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
        border-bottom: none;
    }

    .primary-color-bg {
        height: 160px;
    }

    .about-block-text-wrap {
        flex: 1;
        max-width: 500px;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .year-text {
        font-size: 48px;
    }

    /* Product Showcase - Desktop */
    .product-showcase-grid {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 60px;
        text-align: left;
    }

    .product-sidebar {
        text-align: left;
    }

    .product-desc {
        margin-left: 0;
        margin-right: 0;
    }

    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-image-wrap {
        min-height: 320px;
    }

    .product-image-wrap img {
        max-height: 300px;
    }

    /* Heritage Section */
    .heritage-dark-grid {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 80px;
        text-align: left;
    }

    .heritage-sidebar {
        text-align: left;
    }

    .heritage-item {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 40px;
        align-items: center;
    }

    .heritage-image img {
        height: 200px;
    }

    .feature-image img {
        height: 280px;
    }

    .feature-card-center .feature-image img {
        height: 320px;
    }

    /* Desktop Triangle Adjustments */
    .triangle-mask-left::before,
    .triangle-mask-both::before,
    .triangle-mask-right::before {
        width: 70px;
        height: 70px;
    }

    .triangle-mask-left::before {
        top: -15px;
        left: -15px;
    }

    .triangle-mask-both::before {
        top: -15px;
    }

    .triangle-mask-right::before {
        top: -15px;
        right: -15px;
    }

    /* Compact Footer (Desktop Only) */
    .footer-dark .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 40px 20px;
    }

    .footer-newsletter {
        margin: 0;
        text-align: left;
        width: auto;
        flex: 1;
        max-width: 450px;
    }

    .footer-brand-section {
        text-align: right;
        width: auto;
        flex: 1;
    }

    .footer-brand-text {
        font-size: 3.5rem;
        /* Massive reduction from 15vw */
        margin-bottom: 5px;
        opacity: 0.2;
    }

    .footer-note {
        text-align: right;
    }
}

/* ─────────────────────────────────────────────────────── 
   SCROLL ANIMATIONS
   ─────────────────────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* ─────────────────────────────────────────────────────── 
   ANCESTRAL SCROLL MODAL
   ─────────────────────────────────────────────────────── */
.lineage-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Allows click through when hidden */
}

/* Open State Handled via Class */
.lineage-modal.open {
    pointer-events: auto;
}

.lineage-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 42, 42, 0.95);
    /* Deep Charcoal */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lineage-modal.open .lineage-backdrop {
    opacity: 1;
}

.lineage-scroll-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--charcoal);
    border: 1px solid var(--white-15);
    padding: 60px 40px;
    border-radius: var(--radius);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Custom Scrollbar hide */
    scrollbar-width: none;
}

.lineage-scroll-container::-webkit-scrollbar {
    display: none;
}

.lineage-modal.open .lineage-scroll-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

/* Close Button */
.lineage-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 10px;
}

.lineage-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Content Styling */
.lineage-title {
    font-family: var(--font-titles);
    font-size: 32px;
    color: var(--white);
    margin: 20px 0 40px;
    font-style: italic;
    line-height: 1.2;
}

.lineage-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 30px;
    /* Removed default border-left */
}

/* New Progress Line Styles */
.timeline-line-container {
    position: absolute;
    left: 0;
    top: 10px;
    /* Align with first dot */
    bottom: 0;
    width: 2px;
    background: var(--white-15);
    /* Background track */
    border-radius: 2px;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Starts at 0 */
    background: var(--gold);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
    border-radius: 2px;
    transition: height 0.1s linear;
    /* Smooth but responsive */
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    /* (Border + Padding/2) - half dot */
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--charcoal);
    border: 2px solid var(--white-15);
    /* Default inactive */
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item.active::before {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

.timeline-year {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.lineage-sig-block {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--white-15);
    padding-top: 30px;
}

.sig-text {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.signature {
    font-family: 'Cormorant Infant', serif;
    /* Use Title specific font or script if avail */
    font-size: 28px;
    color: var(--white);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────── 
   ENQUIRY MODAL (New)
   ─────────────────────────────────────────────────────── */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2050;
    /* Higher than Lineage Modal */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    padding: 20px;
}

.enquiry-modal.open {
    pointer-events: auto;
}

.enquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enquiry-modal.open .enquiry-backdrop {
    opacity: 1;
}

.enquiry-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: var(--charcoal);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.enquiry-modal.open .enquiry-content-wrapper {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.enquiry-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--white);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}

.enquiry-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.enquiry-header {
    margin-bottom: 30px;
}

.enquiry-title {
    font-family: var(--font-titles);
    font-size: 28px;
    color: var(--white);
    margin: 10px 0 5px;
    font-style: italic;
}

.enquiry-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.enquiry-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.primary-button.full-width {
    width: 100%;
    display: flex;
}

.enquiry-note {
    margin-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}