:root {
    --bg-dark: #0a0a0a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --gold: #C5A059;
    /* More desaturated, elegant gold */
    --text-main: #f5f5f5;
    --text-muted: #999;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.8;
    /* Smooth page fade-in */
    animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
.brand-font {
    font-family: var(--font-display);
}

h1,
h2,
h3 {
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

strong {
    font-weight: 500;
    color: var(--gold);
}

.gold-text {
    color: var(--gold);
}

/* Header / Nav */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 3rem; /* Removed vertical padding, using fixed height for centering */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: background 0.3s ease, height 0.3s ease;
    height: 150px; /* Precise height to encompass logo and keep nav position locked */
}

/* Homepage : logo visible à gauche comme sur les autres pages */
.homepage #main-header {
    justify-content: space-between;
}

.homepage-logo-mobile {
    display: flex;
}

#main-header.scrolled {
    height: 100px;
    padding: 0 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 130px;
    width: 130px;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.8)); /* Darker contour */
    margin-right: 10px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Burger button — hidden on desktop */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 30px;
}

/* Restored Button Styles for Content Links */
.btn-reserve {
    padding: 10px 25px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    background: transparent;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    /* Ensure it displays */
}

.btn-reserve:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.2);
    color: white;
}

/* Prestation Section (index.html) */
.prestation-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.prestation-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.prestation-text {
    margin-top: 30px;
    color: #eee;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
}

.prestation-subtext {
    margin-top: 20px;
    color: #ccc;
    font-size: 1.15rem;
    font-weight: 300;
}

.prestation-choice {
    margin-top: 30px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.prestation-cta {
    margin-top: 40px;
}

/* Gallery Teaser */
.gallery-teaser {
    height: 600px;
    background: url('images/galerie/galerie_photo%20(2).jpg') fixed center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 900px;
    /* Prevent overlap on small desktop screens */
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 140px;
    text-align: center;
    background: url('images/galerie/galerie_photo%20(2).jpg') no-repeat center center/cover;
    background-attachment: fixed;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-logo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.9)); /* Strong dark contour */
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 40px;
    display: block;
}

.scroll-indicator {
    display: none;
    /* Hidden as requested */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections General */
section {
    padding: 120px 10%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    width: 100px;
    background: var(--gold);
    margin: 0 auto;
}

/* Concept Section Premium */
/* #concept { } - Styles handled by shared section class */

.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.img-wrapper {
    position: relative;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 0;
}

.concept-image {
    width: 100%;
    height: 500px;
    background: url('images/galerie/galerie-photo-1.webp') center/cover;
    position: relative;
    z-index: 1;
    filter: sepia(20%) contrast(1.1);
}

.concept-text blockquote {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.3;
    margin-bottom: 30px;
}

.concept-text p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Media + Text Row (Generic reused layout) */
.media-text-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.media-text-row.reverse {
    direction: rtl;
}

.media-text-row.reverse > * {
    direction: ltr;
}

.media-img-wrapper {
    position: relative;
}

.media-img-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 0;
}

.media-img {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    border-radius: 2px;
}

.media-text-content h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.media-text-content p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .media-text-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .media-img {
        height: 350px;
    }
}

/* Formulas Section Premium */
.formulas {
    background-color: #0d0d0d;
    background-image: radial-gradient(circle at top right, rgba(197, 160, 89, 0.05), transparent 40%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.pricing-card .subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 30px;
}

.pricing-card .price-tag {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.pricing-card .price-unit {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    display: block;
}

/* Formula Details List (Below Cards) */
.formula-details-list {
    max-width: 1000px;
    margin: 60px auto 0;
    display: grid;
    gap: 40px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 4px;
}

.detail-item h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-item p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-meta span {
    font-size: 0.95rem;
    color: #999;
}

.detail-meta strong {
    color: var(--gold);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold);
    margin-top: 5px;
}

.pricing-footer {
    margin-top: auto;
}

.badge-best {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Delivery & Conditions Box */
.info-box {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--gold);
    padding: 30px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.info-item h4 i {
    margin-right: 8px;
}

.info-item ul {
    list-style: none;
    color: #999;
    font-size: 0.9rem;
}

.info-item ul li {
    margin-bottom: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero {
        padding-top: 210px;
        /* Adjusted spacing */
        align-items: flex-start;
        height: auto !important;
        min-height: 0;
        /* Let content dictate height */
        padding-bottom: 40px;
        /* Add bottom padding */
        background-attachment: scroll !important;
        /* Fix for iPhone Zoom bug */
        background-position: center top !important;
        /* Ensure top of image is visible */
    }

    .hero::before {
        background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
        /* Check contrast */
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        /* Better visibility */
    }

    .hero-subtitle {
        font-size: 1.3rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-logo {
        width: 200px;
        /* Enlarged logo as requested */
        height: 200px;
        margin-bottom: 20px;
    }

    /* Homepage: logo visible on mobile */
    .homepage-logo-mobile {
        display: flex;
    }

    .homepage #main-header {
        justify-content: space-between;
    }

    /* Burger Menu — Mobile Navigation */
    #main-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 1.2rem;
        padding-top: max(12px, env(safe-area-inset-top));
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        background: rgba(20, 20, 20, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        height: auto;
        min-height: auto;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

    .burger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.97);
        backdrop-filter: blur(20px);
        padding: 10px 0 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        gap: 0;
        margin-top: 0;
        max-width: none;
    }

    #main-header.nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding: 14px 30px;
        white-space: nowrap;
        text-align: center;
        border-bottom: none !important;
    }

    .logo-container {
        margin-bottom: 0;
        flex-direction: row;
        text-align: left;
    }

    .logo-text {
        display: none;
    }

    #main-header .logo-img {
        display: block;
        width: 36px;
        height: 36px;
    }

    /* Burger animation when open */
    #main-header.nav-open .burger-btn span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    #main-header.nav-open .burger-btn span:nth-child(2) {
        opacity: 0;
    }

    #main-header.nav-open .burger-btn span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    /* Improve visibility of gold text */
    .hero-subtitle,
    .gold-text,
    strong {
        color: #eecf8a;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .concept-layout {
        grid-template-columns: 1fr;
    }

    .concept-image {
        height: 300px;
    }

    section {
        padding: 60px 5%;
        /* Consistent padding */
    }

    /* Ensure consistent top spacing for non-hero pages */
    body:not(:has(.hero)) {
        padding-top: 200px;
        /* Push content down if no hero */
    }

    /* Fix Gallery Teaser Parallax on Mobile */
    .gallery-teaser {
        background-attachment: scroll !important;
        height: 400px;
        /* Reduce height on mobile */
    }

    /* Standard Mobile Fix: Disable Fixed Background to prevent Zoom Bug */
    .hero {
        background: none !important;
        /* Hide CSS background */
        overflow: hidden;
        /* Contain the absolute image */
    }

    .hero-bg-parallax {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        /* Taller than container for parallax movement */
        object-fit: cover;
        z-index: 0;
        /* Behind overlay */
        pointer-events: none;
        will-change: transform;
    }

    .hero::before {
        z-index: 1;
        /* Overlay covers image */
    }

    .hero-content,
    .scroll-indicator {
        position: relative;
        z-index: 2;
        /* Content on top */
    }
}

/* Hide parallax image on desktop */
.hero-bg-parallax {
    display: none;
}

/* Rounded Buttons Global */
.btn-reserve {
    border-radius: 30px;
    /* Rounded */
}

.form-submit {
    border-radius: 30px;
}

.form-input {
    border-radius: 0;
    /* Keep inputs standard mostly, or round them too? User said "box types demander un devis". Let's verify context. */
}

/* Contact Section Premium */
.contact-section {
    padding: 100px 10%;
    background-color: #050505;
    color: white;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-gallery-teaser {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .home-gallery-teaser {
        flex-direction: column;
        padding: 0 5%; /* Add some breathing room on mobile */
    }
    
    .home-gallery-teaser .random-gallery-item {
        width: 100%; /* Ensure they take full width in column mode */
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--gold);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-input option {
    background: #0a0a0a;
    color: white;
    padding: 12px;
}

/* Specific styling for select to handle the arrow */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C5A059' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
    cursor: pointer;
}

/* Hide number input spinners/arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield; /* Added standard property */
}

/* Custom aesthetics for select options (limited cross-browser) */
select.form-input option {
    background-color: #0a0a0a;
    color: white;
    padding: 10px;
}

/* Specific styling for date input to handle the icon */
input[type="date"].form-input::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(10deg);
    cursor: pointer;
}

.form-input::placeholder {
    color: #666;
}

.form-submit {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    display: inline-block;
    font-weight: 500;
}

.form-submit:hover {
    background: var(--gold);
    color: #000;
}

/* Copyright */
.premium-footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #666;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }
}

/* Form row 2 columns */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Date label */
.form-label-date {
    font-size: 0.7rem;
    color: #666;
    position: absolute;
    top: -5px;
    left: 0;
}

/* Form note */
.form-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

/* Screen-reader only labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form validation */
.form-input:invalid:not(:placeholder-shown) {
    border-bottom-color: #c83232;
}

.form-input:valid:not(:placeholder-shown) {
    border-bottom-color: var(--gold);
}

/* Social links */
.social-link {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--gold);
}

.social-link:last-child {
    margin-right: 0;
}

/* Hero buttons container */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Gallery teaser heading */
.gallery-teaser-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: white;
}

/* Gallery section subtitle */
.gallery-section-subtitle {
    margin-top: 20px;
    color: #ccc;
}

/* Random gallery item */
.random-gallery-item {
    flex: 1;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    background-color: #222;
    width: 100%;
}

/* Footer CTA wrapper */
.footer-cta {
    margin-bottom: 30px;
}

/* Footer legal link */
.footer-legal {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal:hover {
    color: var(--gold);
}

/* Info item paragraph */
.info-item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* Engagement Cards — esprit.html */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.engagement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--gold);
    padding: 50px 35px 45px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    background: rgba(197, 160, 89, 0.04);
}

.engagement-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.9;
}

.engagement-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.engagement-desc {
    color: #999;
    font-size: 0.92rem;
    line-height: 1.75;
}

@media (max-width: 650px) {
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Force 2-col concept layout on tablet/desktop (override 900px block) */
@media (min-width: 700px) {
    .concept-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Esprit section subtitles */
.concept-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 20px;
}

.concept-subtitle.spaced {
    margin-top: 30px;
}

/* Info box footer */
.info-box-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Hero subpage height */
.hero-subpage {
    height: 60vh;
}

/* Status messages */
.form-status {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-status-success {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.form-status-error {
    background: rgba(200, 50, 50, 0.1);
    border: 1px solid #c83232;
    color: #c83232;
}

/* Mobile: stack inline form grids to prevent text truncation */
@media (max-width: 600px) {
    #quote-form .form-row-2col {
        display: flex;
        flex-direction: column;
    }
}