/* ========== TYPOGRAPHY ========== */
.luxury-text {
    font-family: 'Playfair Display', serif;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(237, 228, 212, 0.6);
    z-index: 50;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo {
    height: 70.125px !important;
    width: auto !important;
    display: block !important;
}

.nav-teardrop {
    height: 45.747px !important;
    width: auto !important;
    opacity: 0.85;
}

.burger {
    font-size: 36.8px;
    line-height: 1;
    padding: 4px 8px;
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px 8px;
        min-height: 64px;
    }
    .site-logo {
        height: 45.9px !important;
    }
    .nav-teardrop {
        height: 33.4305px !important;
        width: auto !important;
    }
    .header-right {
        gap: 10px;
    }
}

/* Mobile Menu - shares exact desktop centered layout on all sizes */
#mobile-menu {
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(237, 228, 212, 0.6);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 2.5rem;
}

#mobile-menu > div {
    align-items: center;
}

#mobile-menu-close {
    position: absolute;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    z-index: 101;
    top: 0.75rem;
    right: 0.75rem;
    transition: color 0.2s;
}

#mobile-menu-close:hover {
    color: #8B5A2B;
}

#mobile-menu a {
    color: #3A2F2F;
    font-size: 1.125rem;
    padding: 8px 0;
    transition: color 0.2s;
}

#mobile-menu a:hover {
    color: #8B5A2B;
}

/* ========== HERO & QUOTE ========== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 96px;
}

@media (min-width: 768px) {
    .hero { padding-top: 96px; }
}

.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(253,249,242,0.96) 0%, rgba(253,249,242,0.6) 45%, transparent 70%); z-index: 2; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 120px 0 0 0;
    min-height: calc(100vh - 88px);
}

.quote-section { background: #FDF9F2; }

.quote-graphic {
    height: 56px !important;
    width: auto !important;
    opacity: 0.82;
    margin-top: -10px; /* slightly up from the text */
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.856rem;
    line-height: 1.15;
    color: #3A2F2F;
}

@media (min-width: 768px) {
    .quote-text { font-size: 2.131rem; }
}

.quote-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.67rem;
    line-height: 1.15;
    color: #3A2F2F;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.4px;
}

@media (min-width: 768px) {
    .quote-sub { font-size: 1.918rem; }
}

.golden-line {
    height: 2px;
    width: 43px;
    background: #C9A96E;
    align-self: center;
}

.intent-text {
    font-size: 0.98rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #3A2F2F;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        min-height: 0;
        height: auto;
        padding-top: 64px;
    }
    .hero-bg {
        position: static;
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        z-index: 1;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
    }
    .hero-content {
        position: absolute;
        z-index: 10;
        left: 1rem;
        top: 30%;
        width: 45%;
        max-width: 238px;
        padding: 20px 5px 5px 5px;
        min-height: auto;
    }

    /* Mobile hero text — 1.4× scale; ratios between elements unchanged */
    .hero-content > div:first-child { font-size: 8px !important; margin-bottom: 0.25rem !important; letter-spacing: 0.5px !important; }
    .hero-content h1 { font-size: 1.61rem !important; margin-bottom: 1.5rem !important; }
    .hero-content h1 span { font-size: 1.12rem !important; }
    .hero-content .h-\[2px\] { width: 4.2rem !important; margin-bottom: 0.75rem !important; }
    .hero-content p { font-size: 13px !important; margin-bottom: 0.75rem !important; }
    .hero-content a { font-size: 11px !important; padding: 0.28rem 0.56rem !important; }

    /* Quote section mobile: significantly reduce sizes for full horizontal fit; force row layout */
    .quote-section > div > div {
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        position: relative !important;
    }
    .quote-section .flex-1 > div.flex {
        gap: 0.25rem !important;
    }
    /* Quote section — 1.4× scale; ratios between elements unchanged */
    .quote-graphic {
        height: 28px !important;
        width: auto !important;
        margin-top: -3px !important;
    }
    .quote-text {
        font-size: 1.12rem !important;
    }
    .quote-sub {
        font-size: 0.91rem !important;
        margin-left: 2.45rem !important;
        margin-top: 0.1rem !important;
    }
    .golden-line {
        width: 17px !important;
        height: 1px !important;
    }
    .intent-text {
        font-size: 0.63rem !important;
    }

    /* Position the right hanging line + THE INTENT at 50% vertical of the quote container */
    .quote-section > div > div > div:last-child {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 0 !important;
    }

    /* Selected works — 1.4× scale; ratios unchanged; tighter spacing to avoid title wraps */
    .selected-works-section > div {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .selected-works-section .flex.justify-between > div > span {
        font-size: 10.8px !important;
    }
    .selected-works-section .flex.justify-between h2 {
        font-size: 1.7325rem !important;
    }
    .selected-works-section .view-all-link {
        font-size: 10.8px !important;
        position: relative;
        white-space: nowrap !important;
    }
    .selected-works-section .view-all-link::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 1.08px;
        background: #C9A96E;
    }
    .selected-works-section .grid {
        gap: 0.375rem !important;
    }
    .selected-works-section .grid h3 {
        font-size: 11px !important;
        letter-spacing: -0.02em !important;
        white-space: nowrap !important;
    }
    .selected-works-section .grid p {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    /* ========== BOTTOM ARTIST SECTION (mobile only) ========== */
    /* Strong overrides to isolate from all previous quote-section mobile hacks and Tailwind utilities.
       Video column (40%) sets the row height. Text column (50%) is stretched to match and content centered vertically. */
    .quote-section .artist-story {
        display: grid !important;
        grid-template-columns: 38% 55% !important;
        gap: 0.5rem !important;
        align-items: stretch !important;
        justify-content: start !important;
        position: static !important;
    }

    .quote-section .artist-story .video-col {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        height: 100% !important;
    }

    .quote-section .artist-story video {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .quote-section .artist-story .text-col {
        width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
        padding-left: 11px !important;
        box-sizing: border-box !important;

        /* The key: make this column a flex container and center its content vertically to match the video height */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }

    /* Extra-specific reset to kill any remaining absolute positioning or flex leakage from earlier .quote-section rules */
    .quote-section .artist-story > div:last-child,
    .quote-section .artist-story .text-col {
        position: static !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        left: auto !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }

    /* Artist section — 1.4× scale; ratios unchanged */
    .quote-section .artist-story .artist-bio {
        font-size: 11.5px !important;
        line-height: 1.24 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .quote-section .artist-story .read-story-link {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        margin-top: 0.56rem !important;
        white-space: nowrap !important;
    }

    .quote-section .artist-story .title-artist {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    .quote-section .artist-story .title-quote {
        font-size: 14px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    /* Slightly tighter section padding for this artist block on mobile */
    .quote-section.py-8 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    /* ========== MOBILE BURGER MENU (full height side panel) ========== */
    /* 50% screen width, full height, 15% transparency (bg 0.85), items with borders except last */
    #mobile-menu {
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        background: #FDF9F2 !important;
        backdrop-filter: blur(12px);
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    #mobile-menu > div {
        height: 100% !important;
        padding-top: 5rem !important;
        padding-bottom: 2rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }

    #mobile-menu-close {
        top: 0.75rem !important;
        right: 0.75rem !important;
    }

    #mobile-menu a {
        color: #3A2F2F !important;
        font-size: 1.05rem !important;
        padding: 0.75rem 0 !important;
        width: 100% !important;
        text-transform: uppercase !important;
        letter-spacing: 0.75px !important;
        border-bottom: 1px solid rgba(237, 228, 212, 0.6) !important;
        transition: color 0.2s !important;
        text-decoration: none !important;
    }

    #mobile-menu a:hover {
        color: #8B5A2B !important;
    }

    #mobile-menu a:last-child {
        border-bottom: none !important;
    }
}

/* Other */
.bg-\\[\\#FDF9F2\\] { background-color: #FDF9F2; }

/* Stripe payment element styling to ensure the form is visible in the checkout modal */

#payment-element {

  background-color: #fff;

  padding: 10px;

  border: 1px solid #C9B8A3;

  border-radius: 8px;

  min-height: 220px;

}

/* Footer icons (white bg to match navbar) */
footer a img {
    filter: brightness(0);
    opacity: 1;
    transition: opacity 0.2s ease;
}
footer a:hover img {
    opacity: 0.7;
}