:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-accent: #8b7d6b;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Syne', sans-serif;
    --e-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* Grain Overlay - High Quality */
.grain-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat;
    opacity: 0.12;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 150px;
    height: 150px;
}

.loader-logo svg text {
    font-family: var(--font-serif);
    font-size: 50px;
    fill: none;
    stroke: var(--color-text);
    stroke-width: 0.3px;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.loader-text {
    font-size: 11px;
    letter-spacing: 0.6em;
    font-weight: 800;
    margin-top: -20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5vh 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    transition: all 0.5s var(--e-out);
}

.logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg);
    box-shadow: 
        5px 5px 15px rgba(0,0,0,0.1),
        -5px -5px 15px rgba(255,255,255,0.8);
    overflow: hidden;
    transition: transform 0.4s var(--e-out);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3em;
    position: relative;
    padding: 5px 0;
    opacity: 0.7;
    transition: opacity 0.4s var(--e-out);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: width 0.4s var(--e-out);
}

.nav-link:hover::after {
    width: 100%;
}

/* Scrolled State */
.header.scrolled {
    padding: 1.5vh 60px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header.scrolled .logo {
    width: 50px;
    height: 50px;
}

.cta-btn {
    background: var(--color-text);
    color: var(--color-bg) !important;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-decoration: none;
    transition: all 0.4s var(--e-out);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #000;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    visibility: hidden;
}

.slide-visual {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.v-half {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.v-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    background-size: cover;
    background-position: center;
}

.v-left .v-img {
    left: 0;
    background-position: 25% center;
}

.v-right .v-img {
    right: 0;
    background-position: 75% center;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-center-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    opacity: 0;
    transform: translateY(30px);
}

.active .hero-center-logo {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s var(--e-out) 0.5s;
}

.s-num {
    font-family: var(--font-serif);
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.s-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.s-title .line {
    overflow: hidden;
    position: relative;
}

.s-title .line span {
    display: block;
    transform: translateY(110%);
}

.s-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0;
}

.s-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.4em;
    transition: all 0.4s var(--e-out);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: auto; /* Réactive le clic */
}

.s-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Blog actions override — .s-btn starts at opacity:0 for hero animation;
   force it visible when used inside blog pagination */
.blog-actions .s-btn {
    opacity: 1;
    transform: none;
}

.blog-actions {
    text-align: center;
    padding: 60px 0 80px;
}

/* Contact Form 7 Custom Styling */
.custom-cf7 {
    margin-top: 50px;
    text-align: left;
}

.custom-cf7 .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.custom-cf7 .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.custom-cf7 label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    opacity: 0.5;
}

.custom-cf7 input[type="text"],
.custom-cf7 input[type="email"],
.custom-cf7 textarea {
    width: 100%;
    background: transparent;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
    padding: 12px 0 !important;
    outline: none !important;
    font-family: inherit;
    font-size: 16px;
    transition: border-bottom 0.4s var(--e-out);
}

.custom-cf7 input:focus,
.custom-cf7 textarea:focus {
    border-bottom: 1px solid rgba(255,255,255,0.8) !important;
}

.custom-cf7 .submit-wrap {
    text-align: center;
    margin-top: 30px;
}

.custom-cf7 .s-btn {
    background: white !important;
    color: black !important;
    border: none !important;
    padding: 20px 60px !important;
    cursor: pointer !important;
    font-weight: 800 !important;
    letter-spacing: 0.3em !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
}

/* CF7 Submit Button — force visible on dark background */
.lead-section .wpcf7-submit,
.lead-section input[type="submit"],
.lead-section button[type="submit"] {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    padding: 20px 60px !important;
    cursor: pointer !important;
    font-family: var(--font-sans) !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    letter-spacing: 0.4em !important;
    text-transform: uppercase !important;
    margin-top: 30px !important;
    transition: background 0.4s, color 0.4s !important;
}

.lead-section .wpcf7-submit:hover,
.lead-section input[type="submit"]:hover {
    background: #333 !important;
    color: #fff !important;
}

/* CF7 inputs on dark background */
.lead-section .wpcf7 input[type="text"],
.lead-section .wpcf7 input[type="email"],
.lead-section .wpcf7 textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    color: #fff !important;
    padding: 12px 0 !important;
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    width: 100% !important;
    outline: none !important;
}

.lead-section .wpcf7 input::placeholder,
.lead-section .wpcf7 textarea::placeholder {
    color: rgba(255,255,255,0.4) !important;
}

/* Footer */
.footer {
    padding: 100px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: 800;
    letter-spacing: 0.5em;
    font-size: 12px;
}

/* Gutenberg Support & Refinements */
.wp-block-columns {
    display: flex;
    gap: 30px;
}

.wp-block-column.v-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-section {
    position: relative;
    z-index: 5;
}

.step-num {
    margin-bottom: 20px;
}

/* Custom Lead Form in Gutenberg */
.custom-lead-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-top: 50px;
}

.custom-lead-form .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.custom-lead-form .input-group {
    display: flex;
    flex-direction: column;
}

.custom-lead-form label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    opacity: 0.5;
}

.custom-lead-form input, 
.custom-lead-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 0;
    outline: none;
    font-family: inherit;
    font-size: 16px;
}

.custom-lead-form textarea {
    height: 100px;
    resize: none;
}

.custom-lead-form .submit-wrap {
    text-align: center;
    margin-top: 20px;
}

.custom-lead-form .s-btn {
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    opacity: 1 !important;
}

/* Base Styles Overrides */
.has-playfair-display-font-family {
    font-family: var(--font-serif) !important;
}

/* FAQ Accordion */
details.wp-block-details {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
    cursor: pointer;
}

.faq-section details summary {
    font-size: 18px;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-section details summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.4s var(--e-out);
}

.faq-section details[open] summary::after {
    transform: rotate(45deg);
}

.faq-section details p {
    padding-top: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: #faf9f6;
    transition: transform 0.4s var(--e-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Contact Form 7 Custom Styling */
.custom-cf7 {
    margin-top: 50px;
    text-align: left;
}

.custom-cf7 .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.custom-cf7 .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.custom-cf7 label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    opacity: 0.5;
}

.custom-cf7 input[type="text"],
.custom-cf7 input[type="email"],
.custom-cf7 textarea {
    width: 100%;
    background: transparent;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
    padding: 12px 0 !important;
    outline: none !important;
    font-family: inherit;
    font-size: 16px;
    transition: border-bottom 0.4s var(--e-out);
}

.custom-cf7 input:focus,
.custom-cf7 textarea:focus {
    border-bottom: 1px solid rgba(255,255,255,0.8) !important;
}

.custom-cf7 .submit-wrap {
    text-align: center;
    margin-top: 30px;
}

.custom-cf7 .s-btn {
    background: white !important;
    color: black !important;
    border: none !important;
    padding: 20px 60px !important;
    cursor: pointer !important;
    font-weight: 800 !important;
    letter-spacing: 0.3em !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
}

.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
}

.wpcf7-response-output {
    margin: 2em 0 0 !important;
    padding: 15px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    font-size: 12px !important;
    text-align: center !important;
}

/* Base Styles Overrides */
.has-playfair-display-font-family {
    font-family: var(--font-serif) !important;
}

/* ============================================================
   BURGER MENU
   ============================================================ */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.burger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    transition: transform 0.4s var(--e-out), opacity 0.4s var(--e-out), width 0.4s var(--e-out);
    transform-origin: center;
}

.burger.is-active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}
.burger.is-active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--e-out);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
    padding: 100px 40px 60px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.mobile-nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav-list li:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav-link {
    display: block;
    padding: 22px 0;
    text-decoration: none;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4em;
    opacity: 0;
    transform: translateY(15px);
    transition: color 0.3s var(--e-out);
}

.mobile-menu.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
.mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }

.mobile-nav-link:hover {
    color: var(--color-accent);
}

.mobile-cta {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s var(--e-out) 0.3s, transform 0.4s var(--e-out) 0.3s,
                background 0.4s var(--e-out), box-shadow 0.4s var(--e-out);
}

.mobile-menu.is-open .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Burger stays on top of the mobile overlay */
.header {
    z-index: 1001;
}

/* ============================================================
   RESPONSIVE — BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        padding: 0 40px 80px;
        gap: 60px;
    }

    .post-entry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .post-sidebar-mini {
        display: none;
    }

    .expertise-text-col {
        margin-left: 0 !important;
        box-shadow: none !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 15px 20px;
    }

    .header.scrolled {
        padding: 12px 20px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero Slider */
    .slider-section {
        height: 100svh; /* safe viewport height — exclut la barre navigateur mobile */
    }

    .v-half { width: 100%; height: 50%; }
    .slide-visual { flex-direction: column; }
    .s-title { font-size: clamp(32px, 10vw, 48px); }

    .slide-content {
        padding: 0 20px;
    }

    .hero-center-logo {
        max-width: 260px;
    }

    /* Columns */
    .wp-block-columns {
        flex-direction: column;
    }

    /* Expertise */
    .expertise-visual img {
        height: 50vw;
        min-height: 260px;
    }

    .expertise-text-col {
        padding: 60px 30px !important;
        margin-left: 0 !important;
    }

    /* Forms */
    .custom-cf7 .input-row { grid-template-columns: 1fr; }
    .custom-lead-form .input-row { grid-template-columns: 1fr; }

    /* Blog preview (homepage inline grid) */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    /* Blog layout */
    .blog-layout {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
        gap: 40px;
    }

    .blog-container.full-width {
        padding: 0 20px 80px;
    }

    .blog-filters {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /* Blog sections padding */
    .blog-preview {
        padding: 10vh 20px !important;
    }

    /* Post single */
    .post-hero {
        padding: 18vh 20px 8vh;
    }

    .post-entry-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
        margin-top: 60px;
    }

    .post-sidebar-mini {
        display: none;
    }

    .post-featured-visual {
        height: 55vw;
        min-height: 220px;
    }

    /* Gallery */
    .post-gallery-asymmetric {
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin: 60px 0;
        gap: 20px;
    }

    .gal-item.large { height: 60vw; }
    .gal-item.small { height: 50vw; margin-top: 0; }

    /* Footer */
    .footer {
        padding: 60px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-v2 {
        padding: 80px 20px 40px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Legal pages */
    .legal-page-header {
        padding: 15vh 20px 8vh;
    }

    .legal-content {
        padding: 0 20px 10vh;
    }
}

/* Expertise Section Redesign - Luxe Editorial 2.0 */
.expertise-section {
    padding: 0 !important;
    background: #fff !important;
}

.expertise-columns {
    gap: 0 !important;
}

.expertise-image-col {
    padding: 0 !important;
}

.expertise-visual img {
    width: 100%;
    height: 100vh; /* Taller for impact */
    object-fit: cover;
    display: block;
}

.expertise-text-col {
    padding: clamp(80px, 10vw, 150px) clamp(60px, 8vw, 120px) !important;
    background: #f9f8f4 url('https://www.transparenttextures.com/patterns/natural-paper.png'); /* Textured parchment */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Creating an offset effect on desktop */
@media (min-width: 992px) {
    .expertise-text-col {
        margin-left: -15%; /* Deeper overlap */
        box-shadow: -30px 30px 100px rgba(0,0,0,0.08);
        z-index: 10;
        border-left: 1px solid rgba(139, 125, 107, 0.2); /* Subtle Gold divider */
    }
}

.expertise-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expertise-tag::after {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--color-accent);
    opacity: 0.4;
}

.expertise-title {
    font-size: clamp(32px, 5vw, 64px) !important;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    line-height: 1;
    text-transform: uppercase;
}

.expertise-title span {
    display: block;
}

.expertise-title .alt-font {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
    margin-top: -5px;
    opacity: 0.9;
}

.expertise-desc {
    font-size: clamp(16px, 1.2vw, 20px) !important;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.8;
}

.expertise-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.expertise-list li {
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: var(--color-text);
    text-transform: uppercase;
}

.expertise-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    display: inline-block;
    margin-right: 20px;
    transform: rotate(45deg); /* Diamond shape */
    flex-shrink: 0;
}

/* Overrides for existing "Why Quartz" sections in the DB */
.expertise-section .v-center + .v-center {
    background: #f9f8f4;
    padding: 60px !important;
}

/* Hero Split-Screen Overrides (Forces unique images on existing blocks) */
#slide-1 .v-left .v-img { background-image: url('../img/white-view.webp') !important; }
#slide-1 .v-right .v-img { background-image: url('../img/white-texture.webp') !important; }

#slide-2 .v-left .v-img { background-image: url('../img/grey-view.webp') !important; }
#slide-2 .v-right .v-img { background-image: url('../img/grey-texture.webp') !important; }

#slide-3 .v-left .v-img { background-image: url('../img/black-view.webp') !important; }
#slide-3 .v-right .v-img { background-image: url('../img/black-texture.webp') !important; }
/* Footer Luxe V2 - Option B (Centered) */
.footer-v2 {
    background: #0a0a0a;
    color: #fff;
    padding: 120px 60px 60px;
    font-family: var(--font-sans);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 80px;
}

.footer-logo-center img {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
    opacity: 1;
}

.footer-site-name {
    font-size: 11px;
    letter-spacing: 0.8em;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0;
    text-align: center;
}

.footer-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    margin-bottom: 35px;
    font-weight: 800;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.footer-links a, .footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.4s var(--e-out);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Centered Footer (Option B) - Dark Luxury */
.footer-v2 {
    background: #0f0f0f;
    color: #fff;
    padding: 120px 60px 60px;
    border-top: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 80px;
}

.footer-logo-center img {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
}

.footer-site-name {
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 100px;
}

.footer-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.4s var(--e-out);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .copyright, .footer-bottom .manifesto {
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Blog & Sidebar Infrastructure */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 120px;
}

.sidebar-post-item {
    margin-bottom: 30px;
    list-style: none;
}

.sidebar-post-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.sidebar-post-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #eee;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info .post-date {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 5px;
    display: block;
}

.sidebar-post-info .post-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.widget-title {
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Legal Pages Styling */
.legal-page-header {
    padding: 20vh 60px 10vh;
    text-align: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 15vh;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 40px 0 20px;
    font-size: 24px;
    text-transform: uppercase;
}
/* Blog Grid V3 - 3 Columns Full Width */
.blog-container.full-width {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px 120px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 30px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.4s var(--e-out);
    padding: 10px 0;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--e-out);
}

.filter-btn:hover, .filter-btn.active {
    opacity: 1;
}

.filter-btn.active::after {
    width: 100%;
}

.blog-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card-grid {
    background: #fff;
    transition: transform 0.6s var(--e-out);
}

.blog-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f9f9f9;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--e-out);
}

.blog-card-grid:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 8px 15px;
    z-index: 2;
}

.blog-card-content {
    padding: 30px 0;
}

.blog-card-date {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(0,0,0,0.4);
    display: block;
    margin-bottom: 15px;
}

.blog-card-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.4s var(--e-out);
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.blog-card-more {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 5px;
    transition: opacity 0.4s var(--e-out);
}

.blog-card-more:hover {
    opacity: 0.7;
}

.blog-actions {
    margin-top: 80px;
    text-align: center;
}

@media (max-width: 1024px) {
    .blog-grid-v3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .blog-grid-v3 { grid-template-columns: 1fr; }
    .blog-filters { flex-wrap: wrap; gap: 15px; }
}

/* Blog Grid & Cards V2 */
.blog-grid-v2 {
    position: relative;
}

.blog-card-v2 {
    position: relative;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.blog-thumb-v2 {
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    transition: transform 0.6s var(--e-out);
}

.blog-thumb-v2:hover {
    transform: translateY(-10px);
}

.blog-thumb-v2 img {
    transition: transform 1.2s var(--e-out);
}

.blog-thumb-v2:hover img {
    transform: scale(1.08);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-meta::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.5;
}

/* Sidebar Custom Widgets */
.widget {
    margin-bottom: 60px;
}

.sidebar-post-thumb {
    transition: transform 0.4s var(--e-out);
}

.sidebar-post-link:hover .sidebar-post-thumb {
    transform: scale(1.05);
}

.sidebar-post-info .post-title {
    transition: color 0.4s var(--e-out);
}

.sidebar-post-link:hover .post-title {
    color: var(--color-accent);
}

/* Single Post Editorial Layout */
.single-post-v2 {
    background: #fff;
    padding-bottom: 15vh;
}

.post-hero {
    text-align: center;
    padding: 25vh 60px 10vh;
}

.post-hero-inner {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.post-cat-tag a {
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-accent);
    text-decoration: none;
    margin-bottom: 30px;
    display: block;
}

.post-title-main {
    font-size: clamp(40px, 7vw, 85px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.post-meta-details {
    font-size: 13px;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.post-featured-visual {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    margin: 0 auto;
    overflow: hidden;
}

.post-featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-entry-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 60px;
}

.post-sidebar-mini {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-label {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 10px;
    font-weight: 800;
    opacity: 0.3;
}

.share-links {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.share-links li {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 800;
}

.post-content-body {
    max-width: 800px;
}

.entry-rich-text {
    font-size: 19px;
    line-height: 2;
    color: #333;
}

.entry-rich-text p {
    margin-bottom: 40px;
}

.post-newsletter-box {
    background: #f9f9f9;
    padding: 60px;
    margin-top: 100px;
    text-align: center;
}

.post-newsletter-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}

.post-newsletter-box p {
    margin-bottom: 30px;
    opacity: 0.7;
}

/* Gallery Asymmetric */
.post-gallery-asymmetric {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin: 150px 0;
    padding: 0 60px;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-item.large { height: 800px; }
.gal-item.small { height: 500px; margin-top: 150px; }
