:root {
    /* Brand Core */
    --color-black: #1a1a1a;
    --color-white: #faf9f7;
    --color-cream: #f5f0eb;

    /* Mood Palette — Heritage Lyricist */
    --mood-heritage-bg: #4a5a3a;
    /* Deep olive green */
    --mood-heritage-accent: #8b9a6b;
    /* Sage */

    /* Mood Palette — Romantic Weaver */
    --mood-romantic-bg: #c4a870;
    /* Warm gold / antique */
    --mood-romantic-accent: #d4b896;
    /* Soft gold */

    /* Mood Palette — Vibrant Maximalist */
    --mood-vibrant-bg: #3a5a5a;
    /* Deep teal */
    --mood-vibrant-accent: #6b8a8a;
    /* Muted teal */

    /* Mood Palette — Wild Alchemist */
    --mood-wild-bg: #7a8a6a;
    /* Sage green */
    --mood-wild-accent: #9aaa8a;
    /* Light sage */

    /* Mood Palette — Modern Lace */
    --mood-modern-bg: #e8ddd0;
    /* Warm cream/beige */
    --mood-modern-accent: #d4c4b0;
    /* Soft taupe */

    /* Typography */
    --font-serif-brand: 'Playfair Display', serif;
    --font-serif-heading: 'Cormorant Garamond', serif;
    --font-sans-body: 'Montserrat', sans-serif;

    /* Layout & Transitions */
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s ease-out;
    --transition-fast: 0.2s ease-out;
}

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

html {
    font-size: 62.5%;
    /* 10px base for easier rem calculations (e.g., 1.5rem = 15px) */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans-body);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-cream);
    /* Premium Watercolor Paper Texture */
    background-image: url("../assets/images/premium-paper.png");
    background-repeat: repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-italic {
    font-family: var(--font-serif-heading);
    font-style: italic;
    font-weight: 300;
}

/* Logo Component */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-img {
    height: 4rem;
    width: auto;
    transition: filter var(--transition-medium);
}

.footer-logo-img {
    height: 5rem;
}

/* Default: white logo on transparent header over dark hero */
#main-header .logo-img {
    filter: brightness(0) invert(1);
}

/* Scrolled: dark logo on white header */
#main-header.scrolled .logo-img {
    filter: none;
}

/* Footer: white logo on dark background */
.footer-logo-img {
    filter: brightness(0) invert(1);
}

/* Base Layout Constraints */
main {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all var(--transition-slow);
    background-color: transparent;
    color: var(--color-white);
}

#main-header.scrolled {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 1.5rem 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#main-header nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

#main-header nav a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    padding-bottom: 0.5rem;
}

#main-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-medium);
}

#main-header nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

#main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-black);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Extra height for parallax */
    background-size: cover;
    background-position: center bottom;
    background-color: #333;
    /* Fallback */
    z-index: 1;
    transform: translateZ(0);
    /* Hardware accel */
    /* Overlay gradient to ensure text readability */
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: -5vh;
    /* Slight optical adjustment */
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

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

.hero-quote {
    font-family: 'Playfair Display', serif;
    /* Or a custom script-like font for the quote */
    font-style: italic;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    /* Making it look handwritten/calligraphic based on prompt "And to flounder..." */
    /* We might need a specific font for the exact look, using Playfair Italic here */
}

.hero-cite {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
    opacity: 0.8;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    /* Bottom bar area */
    color: var(--color-black);
    padding-top: 2rem;
}

.hero-question {
    font-size: 2.2rem;
    font-family: var(--font-serif-heading);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 2rem;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 60px;
    height: 1px;
    background-color: var(--color-black);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 60px;
    height: 1px;
    background-color: var(--color-black);
}

.arrow-icon {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    animation: bounce 2s infinite ease-in-out;
    color: var(--mood-heritage-bg);
}

@keyframes bounce {

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

    50% {
        transform: translateY(5px);
    }
}

.mood-swatches {
    display: flex;
    width: 100%;
    height: 60px;
}

.swatch {
    flex: 1;
    height: 100%;
    transition: opacity var(--transition-medium);
}

.swatch:hover {
    opacity: 0.8;
}

.swatch-heritage {
    background-color: var(--mood-heritage-bg);
}

.swatch-romantic {
    background-color: var(--mood-romantic-bg);
}

.swatch-vibrant {
    background-color: var(--mood-vibrant-bg);
}

.swatch-wild {
    background-color: var(--mood-wild-bg);
}

.swatch-modern {
    background-color: var(--mood-modern-bg);
}

/* ==========================================================================
   The 5 Wedding Moods Section
   ========================================================================== */
.moods-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-color: var(--color-black);
    /* fallback */
}

.mood-cols {
    display: flex;
    width: 100%;
    height: 100vh;
    /* desktop height */
}

.mood-card {
    flex: 1;
    width: 20%;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: flex var(--transition-slow);
}

.mood-title {
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.mood-traits {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 4rem;
    z-index: 2;
    opacity: 0.9;
    font-weight: 300;
}

.mood-traits li {
    position: relative;
    padding-left: 1rem;
}

.mood-traits li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.mood-img-wrap {
    flex-grow: 1;
    width: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    z-index: 2;
}

.mood-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mood-card:hover .mood-img-wrap img {
    transform: scale(1.05);
}

.btn-find-out {
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
    align-self: flex-start;
    z-index: 2;
}

.btn-find-out::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-medium);
}

.btn-find-out:hover::after {
    width: 100%;
}

/* Base Responsive */
@media (max-width: 1199px) {

    /* Tablet */
    .mood-cols {
        flex-wrap: wrap;
        height: auto;
    }

    .mood-card {
        flex: 0 0 33.333%;
        height: 80vh;
    }
}

@media (max-width: 767px) {

    /* Mobile */
    .mood-cols {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        height: 85vh;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .mood-cols::-webkit-scrollbar {
        display: none;
    }

    .mood-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 6rem 2rem 3rem;
    }
}

/* ==========================================================================
   Mood Detail Overlay
   ========================================================================== */
.mood-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: var(--color-black);
    color: var(--color-cream);
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.mood-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.close-overlay {
    position: fixed;
    top: 2rem;
    right: 3rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 210;
    transition: opacity var(--transition-short);
}

.close-overlay:hover {
    opacity: 0.7;
}

.overlay-content {
    min-height: 100vh;
    padding: 10rem 4rem 4rem;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-split {
    display: flex;
    width: 100%;
    gap: 6rem;
}

.detail-text {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.detail-text h2 {
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1.1;
    margin-bottom: 3rem;
}

.detail-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.detail-text .quote {
    font-family: var(--font-serif-heading);
    font-style: italic;
    font-size: 2.2rem;
    color: inherit;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.mood-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid currentColor;
    opacity: 0.85;
}

.mood-detail-block h4 {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mood-detail-block p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.question-cta {
    margin-top: auto;
    padding-top: 4rem;
}

.question-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.detail-visuals {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-visuals img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .detail-split {
        flex-direction: column;
    }

    .detail-text,
    .detail-visuals {
        width: 100%;
    }
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-section {
    padding: 10rem 2rem;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-heading {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 5rem;
    text-align: center;
}

.wedding-form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-row {
    display: flex;
    gap: 3rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group.half {
    width: 50%;
}

.form-group.full-width {
    width: 100%;
}

/* Floating Labels */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1.5rem 0 1rem;
    font-family: var(--font-sans-body);
    font-size: 1.5rem;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    outline: none;
    transition: border-color var(--transition-fast);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    appearance: none;
    border-radius: 0;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
}

.form-group>label {
    position: absolute;
    top: 1.5rem;
    left: 0;
    font-size: 1.5rem;
    color: rgba(26, 26, 26, 0.6);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group>label.active-label {
    top: -0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

input:focus~label,
input:not(:placeholder-shown)~label,
textarea:focus~label,
textarea:not(:placeholder-shown)~label {
    top: -0.5rem;
    font-size: 1.1rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--color-black);
}

/* Checkbox specific */
.checkbox-group-wrap {
    gap: 1rem;
}

.checkbox-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 0.5rem;
}

.checkbox-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-options label {
    font-size: 1.4rem;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    /* Override form-group label if any spilled over */
    pointer-events: auto;
}

.submit-btn {
    appearance: none;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    font-family: var(--font-serif-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 2rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-footer-text {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: rgba(26, 26, 26, 0.6);
}

.form-footer-text a {
    text-decoration: underline;
}

.success-message {
    margin-top: 2rem;
    text-align: center;
    color: var(--mood-heritage-bg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.footer-credit {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-credit a {
    font-weight: 500;
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
}

.footer-bottom {
    margin-top: 4rem;
    font-size: 1.1rem;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

    .detail-split {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .detail-text {
        height: auto;
        padding-top: 10vh;
        padding-bottom: 2rem;
    }

    .detail-visuals {
        display: none;
        /* simple fallback for tablet overlay */
    }
}

@media (max-width: 768px) {
    #main-header {
        padding: 1.5rem 2rem;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    #main-header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #main-header nav.active {
        right: 0;
    }

    #main-header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    #main-header nav a {
        color: var(--color-black);
        /* Always black in mobile menu overlay */
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .mood-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
    }

    .mood-card {
        min-width: 80vw;
        scroll-snap-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 3rem;
    }

    .form-group.half {
        width: 100%;
    }

    .contact-container {
        padding: 6rem 2rem;
    }

    .hero-question {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .hero-bottom {
        padding-top: 1.5rem;
    }

    .mood-swatches {
        height: 40px;
    }

    .overlay-content {
        padding: 8rem 2rem 3rem;
    }
}

/* ==========================================================================
   V2 Mix Styles
   ========================================================================== */
:root {
    --color-navy: #223b54;
    --color-navy-hover: #172a3d;
}

/* Base button */
.btn-navy {
    display: inline-block;
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-serif-heading);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn-navy:hover {
    background-color: var(--color-navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-navy-solid {
    background-color: var(--color-navy);
    color: var(--color-white);
    width: 100%;
    /* For forms */
    margin-top: 2rem;
    font-size: 1.8rem;
    padding: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-serif-heading);
}

.btn-navy-solid:hover {
    background-color: var(--color-navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mixed Hero Section */
.hero-v2-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    padding-top: 5vh;
    /* adjust space for header */
}

.video-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image: url("../assets/images/hero-lemarche.webp");
    background-size: cover;
    background-position: center;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 100 * 16/9 */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.5) 100%);
    /* Darker overlay for white text to read well, like original index.html */
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: -10vh;
    /* Optical adjustment upward to leave space for bottom bar */
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-subtitle {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title,
.hero-title-italic {
    font-family: var(--font-serif-heading);
    font-weight: 300;
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--color-white);
    text-transform: none;
    letter-spacing: normal;
}

.hero-title-italic {
    font-style: italic;
}

.hero-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 700px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.tuscany-banner {
    padding: 6rem 2rem 0;
    text-align: center;
    width: 100%;
}

.tuscany-no {
    font-size: 2.2rem;
    font-family: var(--font-sans-body);
    font-weight: 300;
    color: var(--color-black);
}

.italic-serif {
    font-family: var(--font-serif-heading);
    font-style: italic;
    font-size: 2.2rem;
}

/* Why Le Marche Section */
.why-lemarche-section {
    padding: 10rem 2rem;
    background-color: var(--color-cream);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.why-header h2 {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: normal;
}

.why-header p {
    font-size: 1.6rem;
    opacity: 0.8;
}

.heart-icon {
    font-style: normal;
}

.why-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    position: relative;
}

.why-image-wrap {
    grid-column: 1 / 2;
    z-index: 1;
}

.why-image-wrap img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-list-wrap {
    grid-column: 2 / 3;
    z-index: 2;
    background-color: var(--color-cream);
    padding: 6rem 5rem;
    margin-left: -8rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    /* slight border */
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.8;
}

.check-icon {
    color: var(--color-black);
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

/* A Curated Connection Section */
.curated-connection-section {
    padding: 10rem 2rem;
    background-color: var(--color-cream);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.curated-header {
    margin-bottom: 8rem;
}

.curated-header h2 {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: normal;
}

.curated-header p {
    font-size: 1.6rem;
    opacity: 0.8;
    line-height: 1.8;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(26, 26, 26, 0.2);
    z-index: 1;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-cream);
    border: 1px solid rgba(26, 26, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-black);
    font-size: 1.2rem;
}

.step-title {
    font-family: var(--font-sans-body);
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 1.3rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Distinct Signatures Grid (V3) */
.moods-section-grid {
    background-color: var(--color-white);
    padding: 10rem 2rem;
    position: relative;
}

.signatures-header {
    text-align: center;
    padding: 0 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.signatures-header h2 {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    text-transform: none;
    margin-bottom: 2rem;
    letter-spacing: normal;
    color: var(--color-black);
}

.signatures-header p {
    font-size: 1.6rem;
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.8;
}

.editorial-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-text-card {
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.grid-text-card h3 {
    font-family: var(--font-serif-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    text-align: center;
}

.grid-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(26, 26, 26, 0.8);
    font-weight: 400;
    text-align: center;
}

.grid-think-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(26, 26, 26, 0.6);
}

.grid-list {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.8);
    font-weight: 300;
}

.grid-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.grid-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-black);
}

.grid-photo {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.grid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-contact {
    background-color: var(--color-cream);
    padding-top: 10rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero secondary link */
.hero-secondary-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-sans-body);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.hero-secondary-link:hover {
    color: rgba(255, 255, 255, 1);
}

/* Contact bridge text */
.contact-bridge {
    text-align: center;
    font-family: var(--font-sans-body);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(26, 26, 26, 0.5);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Lead Magnet Section
   ========================================================================== */
.lead-magnet-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
}

.lead-magnet-container {
    max-width: 1200px;
}

.lead-magnet-split {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
    align-items: center;
}

/* Guide Mockup */
.lead-magnet-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-mockup {
    position: relative;
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.guide-mockup:hover {
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
}

.guide-cover {
    background-color: var(--color-cream);
    color: var(--color-black);
    padding: 4rem 3rem;
    width: 280px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.guide-cover::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid rgba(26, 26, 26, 0.15);
    pointer-events: none;
}

.guide-label {
    font-family: var(--font-sans-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.guide-cover-title {
    font-family: var(--font-serif-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.guide-cover-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-navy);
    margin-bottom: 2rem;
}

.guide-pages {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.6);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.guide-brand {
    font-family: var(--font-sans-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(26, 26, 26, 0.4);
    font-weight: 600;
}

/* Lead Magnet Content */
.lead-magnet-content h2 {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.lead-magnet-eyebrow {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lead-magnet-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
}

.guide-highlights {
    list-style: none;
    margin-bottom: 4rem;
}

.guide-highlights li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.guide-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mood-romantic-accent);
    font-weight: 600;
}

/* Lead Magnet Form */
.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-magnet-fields {
    display: flex;
    gap: 2rem;
}

.lead-magnet-fields .form-group {
    flex: 1;
}

.lead-magnet-fields input[type="text"],
.lead-magnet-fields input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    padding: 1.5rem 1.2rem 1rem;
    font-size: 1.5rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.lead-magnet-fields input[type="text"]:focus,
.lead-magnet-fields input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.lead-magnet-fields .form-group > label {
    color: rgba(255, 255, 255, 0.5);
    left: 1.2rem;
}

.lead-magnet-fields input:focus ~ label,
.lead-magnet-fields input:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 1.2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.lead-magnet-btn {
    width: 100%;
    padding: 1.8rem 3rem;
    font-size: 1.5rem;
    background-color: var(--color-white);
    color: var(--color-navy);
    border: none;
    font-family: var(--font-serif-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.lead-magnet-btn:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lead-magnet-privacy {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.lead-magnet-privacy a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.5);
}

.lead-magnet-privacy a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Lead Magnet Success */
.lead-magnet-success {
    text-align: center;
    padding: 3rem 0;
}

.lead-magnet-success h3 {
    font-family: var(--font-serif-heading);
    font-size: 2.4rem;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.lead-magnet-success p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Lead Magnet Responsive */
@media (max-width: 900px) {
    .lead-magnet-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .lead-magnet-visual {
        order: -1;
    }

    .guide-mockup {
        transform: none;
    }

    .guide-mockup:hover {
        transform: none;
    }

    .guide-cover {
        width: 240px;
        min-height: 320px;
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 600px) {
    .lead-magnet-section {
        padding: 6rem 2rem;
    }

    .lead-magnet-fields {
        flex-direction: column;
        gap: 1.5rem;
    }

    .guide-cover {
        width: 220px;
        min-height: 290px;
        padding: 2.5rem 2rem;
    }

    .guide-cover-title {
        font-size: 1.8rem;
    }

    .guide-highlights li {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .editorial-grid-v3 {
        grid-template-columns: 1fr;
    }

    .why-split {
        grid-template-columns: 1fr;
    }

    .why-image-wrap {
        grid-column: auto;
    }

    .why-list-wrap {
        grid-column: auto;
        margin-left: 0;
        padding: 4rem 3rem;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 4rem;
    }

    .timeline-line {
        display: none;
    }

    .step {
        max-width: 400px;
        margin: 0 auto;
    }

    .mood-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Quiz CTA Section
   ========================================================================== */
.quiz-cta-section {
    padding: 8rem 2rem;
    background-color: var(--color-white);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quiz-cta-container {
    max-width: 700px;
}

.quiz-cta-eyebrow {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quiz-cta-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 2rem;
    font-style: italic;
}

.quiz-cta-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.quiz-cta-skip {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: rgba(26, 26, 26, 0.5);
}

.quiz-cta-skip a {
    text-decoration: underline;
}

/* ==========================================================================
   Quiz Overlay
   ========================================================================== */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: var(--color-cream);
    color: var(--color-black);
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.quiz-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

/* Progress Bar */
.quiz-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(26, 26, 26, 0.1);
    z-index: 210;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--color-navy);
    transition: width 0.4s ease-out;
}

/* Quiz Content */
.quiz-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Quiz Steps */
.quiz-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.quiz-step.active {
    display: flex;
    animation: quizStepIn 0.4s ease-out forwards;
}

@keyframes quizStepIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quiz-step-counter {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.4);
    margin-bottom: 2rem;
}

.quiz-question {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 4rem;
    font-style: italic;
}

/* Quiz Options Grid */
.quiz-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.quiz-option {
    appearance: none;
    background: var(--color-white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.quiz-option:hover {
    border-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.quiz-option.selected {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 2px var(--color-navy);
}

.quiz-option-visual {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.quiz-option-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.quiz-option:hover .quiz-option-visual img {
    transform: scale(1.05);
}

.quiz-option-label {
    display: block;
    padding: 1.5rem 1rem;
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-black);
    font-weight: 400;
}

/* Text-only options (Step 4) */
.quiz-options-text .quiz-option {
    padding: 2rem 1.5rem;
}

.quiz-options-text .quiz-option-label {
    padding: 0;
    font-size: 1.4rem;
}

/* Palette Swatches (Step 3) */
.quiz-palette-swatches {
    display: flex;
    width: 100%;
    height: 80px;
}

.quiz-palette-swatches span {
    flex: 1;
    height: 100%;
}

/* Data Capture (Step 5) */
.quiz-data-capture {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
}

.quiz-field-group {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quiz-field-group > label {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.quiz-field-group select {
    width: 100%;
    padding: 1.5rem 0 1rem;
    font-family: var(--font-sans-body);
    font-size: 1.5rem;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    outline: none;
    appearance: none;
    border-radius: 0;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
}

.quiz-next-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Email Gate (Step 6) */
.quiz-email-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
}

.quiz-gate-desc {
    font-size: 1.5rem;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.quiz-email-form .quiz-field-group > label {
    position: absolute;
    top: 1.5rem;
    left: 0;
    font-size: 1.5rem;
    color: rgba(26, 26, 26, 0.6);
    pointer-events: none;
    transition: all var(--transition-fast);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 300;
    margin-bottom: 0;
}

.quiz-email-form input[type="text"],
.quiz-email-form input[type="email"] {
    width: 100%;
    padding: 1.5rem 0 1rem;
    font-family: var(--font-sans-body);
    font-size: 1.5rem;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    outline: none;
    transition: border-color var(--transition-fast);
}

.quiz-email-form input:focus ~ label,
.quiz-email-form input:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    font-size: 1.1rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quiz-email-form input:focus {
    border-bottom-color: var(--color-black);
}

.quiz-reveal-btn {
    width: 100%;
}

.quiz-privacy {
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.4);
    text-align: center;
}

.quiz-privacy a {
    text-decoration: underline;
}

/* Quiz Result (Step 7) */
.quiz-result-step {
    text-align: left;
}

.quiz-result-content {
    width: 100%;
}

.quiz-result-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quiz-result-eyebrow {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.quiz-result-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.quiz-result-quote {
    font-family: var(--font-serif-heading);
    font-style: italic;
    font-size: 2rem;
    opacity: 0.7;
}

.quiz-result-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.quiz-result-desc {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.quiz-result-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-result-images img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quiz-result-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.btn-navy-outline {
    display: inline-block;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
    background: transparent;
    font-family: var(--font-serif-heading);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn-navy-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* Quiz Responsive */
@media (max-width: 900px) {
    .quiz-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .quiz-result-body {
        grid-template-columns: 1fr;
    }

    .quiz-content {
        padding: 7rem 2rem;
    }
}

@media (max-width: 600px) {
    .quiz-options {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .quiz-option-visual {
        height: 100px;
    }

    .quiz-option-label {
        font-size: 1.1rem;
        padding: 1rem 0.8rem;
    }

    .quiz-content {
        padding: 6rem 1.5rem;
    }

    .quiz-result-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .quiz-result-ctas .btn-navy,
    .quiz-result-ctas .btn-navy-outline {
        width: 100%;
        text-align: center;
    }

    .quiz-cta-section {
        padding: 6rem 2rem;
    }

    .quiz-options-text .quiz-option {
        padding: 1.5rem 1rem;
    }

    .quiz-options-text .quiz-option-label {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Why Le Marche — Teaser additions
   ========================================================================== */
.why-teaser-intro {
    font-family: var(--font-serif-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 300;
}

.lemarche-discover-btn {
    margin-top: 3rem;
}

/* ==========================================================================
   Le Marche Discovery Overlay
   ========================================================================== */
.lemarche-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: var(--color-navy, #1b2a4a);
    color: var(--color-white);
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.lemarche-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.close-lemarche {
    position: fixed;
    top: 2rem;
    right: 3rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 210;
    transition: opacity var(--transition-fast);
    mix-blend-mode: difference;
}

.close-lemarche:hover {
    opacity: 0.7;
}

/* Block System */
.lemarche-overlay-content {
    width: 100%;
}

.lm-block {
    padding: 10rem 4rem;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lm-hero-block,
.lm-block.lm-visible {
    opacity: 1;
    transform: translateY(0);
}

.lm-block-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lm-block-navy {
    background-color: #1b2a4a;
    color: var(--color-white);
}

.lm-block-cream {
    background-color: var(--color-cream);
    color: var(--color-black);
}

/* Typography */
.lm-eyebrow {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.lm-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(5rem, 8vw, 10rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1;
    margin-bottom: 2rem;
}

.lm-subtitle-italic {
    font-family: var(--font-serif-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-style: italic;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 4rem;
}

.lm-section-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.lm-intro-text,
.lm-compare-intro,
.lm-gastro-intro,
.lm-weather-intro,
.lm-guests-intro {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.85;
}

/* Hero Block */
.lm-hero-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lm-hero-block .lm-block-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lm-hero-block .lm-intro-text {
    max-width: 600px;
    margin: 0 auto;
}

/* Map Block */
.lm-map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
}

.lm-map-svg-wrap {
    position: relative;
}

.lm-map-svg {
    width: 100%;
    height: auto;
}

.lm-map-land {
    fill: rgba(26, 26, 26, 0.06);
    stroke: rgba(26, 26, 26, 0.12);
    stroke-width: 1.5;
}

.lm-map-lemarche {
    fill: #1b2a4a;
    stroke: #1b2a4a;
    stroke-width: 1.5;
}

.lm-map-sea-label {
    font-family: var(--font-serif-heading);
    font-size: 11px;
    font-style: italic;
    fill: rgba(26, 26, 26, 0.2);
    letter-spacing: 0.15em;
}

.lm-map-region-label {
    font-family: var(--font-sans-body);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    fill: var(--color-white);
    font-weight: 600;
    text-anchor: middle;
}

.lm-map-city-dot {
    fill: var(--color-black);
}

.lm-map-city-dot.lm-map-city-ancona {
    fill: #1b2a4a;
    stroke: var(--color-white);
    stroke-width: 2;
    r: 6;
}

.lm-map-city-name {
    font-family: var(--font-sans-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    fill: var(--color-black);
    font-weight: 500;
}

.lm-map-ancona-label {
    font-weight: 700;
    fill: #1b2a4a;
}

.lm-map-distance-label {
    font-family: var(--font-sans-body);
    font-size: 10px;
    fill: #1b2a4a;
    font-weight: 600;
}

.lm-map-route {
    stroke: #1b2a4a;
    stroke-width: 1.5;
    stroke-dasharray: 6, 4;
    fill: none;
    opacity: 0.4;
}

.lm-distance-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.lm-distance-card:first-child {
    padding-top: 0;
}

.lm-distance-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.lm-distance-card strong {
    font-family: var(--font-sans-body);
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.lm-distance-card p {
    font-size: 1.3rem;
    opacity: 0.7;
    font-weight: 300;
}

.lm-map-note {
    margin-top: 3rem;
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.6;
    line-height: 1.6;
}

/* Comparison Table */
.lm-compare-table {
    margin-top: 4rem;
    width: 100%;
}

.lm-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lm-compare-header-row {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.lm-compare-cell {
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.75;
}

.lm-compare-header-row .lm-compare-cell {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 1;
}

.lm-compare-label {
    font-weight: 500;
    opacity: 0.6;
}

.lm-compare-highlight {
    opacity: 1;
    font-weight: 500;
    color: var(--color-cream);
}

/* Gastronomy Grid */
.lm-gastro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.lm-gastro-card {
    padding: 4rem 3rem;
    background-color: var(--color-white);
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.lm-gastro-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.lm-gastro-card h4 {
    font-family: var(--font-serif-heading);
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
}

.lm-gastro-card p {
    font-size: 1.4rem;
    line-height: 1.7;
    opacity: 0.75;
    font-weight: 300;
}

/* Gallery Grid */
.lm-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.lm-gallery-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lm-placeholder-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.lm-placeholder-text {
    font-family: var(--font-sans-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.4;
}

.lm-gallery-caption {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.75;
    font-weight: 300;
}

/* Weather Grid */
.lm-weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.lm-weather-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.lm-weather-season {
    font-family: var(--font-serif-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.lm-weather-months {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.lm-weather-temp {
    font-family: var(--font-sans-body);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1b2a4a;
}

.lm-weather-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.lm-weather-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.7;
    font-weight: 300;
    text-align: left;
    margin-bottom: 2rem;
}

.lm-weather-tag {
    display: inline-block;
    font-family: var(--font-sans-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
}

.lm-tag-popular { background: rgba(34, 59, 84, 0.08); color: #1b2a4a; }
.lm-tag-peak { background: rgba(192, 96, 80, 0.1); color: #c06050; }
.lm-tag-best { background: rgba(75, 120, 75, 0.1); color: #4a784a; }
.lm-tag-value { background: rgba(26, 26, 26, 0.06); color: rgba(26, 26, 26, 0.6); }

/* Guest Timeline */
.lm-timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 4rem;
}

.lm-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.lm-timeline-item {
    position: relative;
    padding-bottom: 5rem;
    padding-left: 3rem;
}

.lm-timeline-item::before {
    content: '';
    position: absolute;
    left: -3.2rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-cream);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lm-timeline-item:last-child {
    padding-bottom: 0;
}

.lm-timeline-day {
    font-family: var(--font-sans-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.lm-timeline-item h4 {
    font-family: var(--font-serif-heading);
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
}

.lm-timeline-item p {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.8;
    max-width: 600px;
}

/* CTA Block */
.lm-cta-block {
    text-align: center;
}

.lm-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 0;
}

.lm-cta-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
}

.lm-cta-desc {
    font-size: 1.5rem;
    opacity: 0.7;
    margin-bottom: 3rem;
    font-weight: 300;
}

.lm-cta-buttons {
    display: flex;
    gap: 2rem;
}

/* Le Marche Overlay Responsive */
@media (max-width: 900px) {
    .lm-block {
        padding: 8rem 2rem;
    }

    .lm-map-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .lm-compare-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 0;
    }

    .lm-compare-header-row {
        display: none;
    }

    .lm-compare-cell {
        padding: 0.5rem 0;
    }

    .lm-compare-label {
        font-weight: 600;
        opacity: 0.5;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .lm-compare-highlight::before {
        content: 'Le Marche: ';
        font-weight: 300;
        opacity: 0.6;
    }

    .lm-compare-row .lm-compare-cell:last-child::before {
        content: 'Tuscany: ';
        font-weight: 300;
        opacity: 0.6;
    }

    .lm-gastro-grid {
        grid-template-columns: 1fr;
    }

    .lm-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lm-weather-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lm-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .lm-cta-buttons .btn-navy,
    .lm-cta-buttons .btn-navy-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .lm-block {
        padding: 6rem 1.5rem;
    }

    .lm-weather-grid {
        grid-template-columns: 1fr;
    }

    .lm-title {
        font-size: clamp(4rem, 12vw, 6rem);
    }

    .lm-timeline {
        padding-left: 3rem;
    }

    .lm-timeline-item {
        padding-left: 2rem;
    }

    .close-lemarche {
        top: 1.5rem;
        right: 2rem;
    }
}