/* ============================================
   BIJOUTERIE LANCINA - Luxury Jewelry Website
   ============================================ */

:root {
    --gold: #C6A55C;
    --gold-light: #D4B978;
    --gold-dark: #A8883E;
    --gold-glow: rgba(198, 165, 92, 0.15);
    --black: #0A0A0A;
    --dark: #141414;
    --dark-2: #1A1A1A;
    --dark-3: #222222;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FAFAFA;
    --text: #D4D0C8;
    --text-muted: #8A8578;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-diamond {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--gold);
    transform: rotate(45deg);
    margin: 0 auto 1.5rem;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
    50% { transform: rotate(45deg) scale(1.3); opacity: 0.5; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(198, 165, 92, 0.1);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.6) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.3) 100%);
}

/* Fallback background when no video */
.hero-video-container {
    background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 40%, #141008 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(198, 165, 92, 0.3);
    padding: 0.6rem 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--cream);
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.hero-title-accent {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out) 1.15s forwards;
}

.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero-separator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1.6s forwards;
}

.hero-sep-diamond {
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    font-weight: 300;
    color: var(--cream-dark);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    transition: all 0.4s ease;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.9s forwards;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateY(3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: 1.5rem 0;
    background: var(--dark);
    border-top: 1px solid rgba(198, 165, 92, 0.08);
    border-bottom: 1px solid rgba(198, 165, 92, 0.08);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.marquee-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.section-separator {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.section-separator span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* Animate on scroll */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICES / SAVOIR-FAIRE
   ============================================ */
.savoir-faire {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--dark);
    border: 1px solid rgba(198, 165, 92, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(198, 165, 92, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(198, 165, 92, 0.06);
    border-bottom: 1px solid rgba(198, 165, 92, 0.06);
}

.quote-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 300;
    color: rgba(198, 165, 92, 0.03);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.quote {
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
    opacity: 0.5;
}

.quote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quote cite {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.quote footer span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   HISTOIRE
   ============================================ */
.histoire {
    background: var(--black);
}

.histoire-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.histoire-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.histoire-text p:last-child {
    margin-bottom: 0;
}

.histoire-visual {
    position: relative;
}

.histoire-image-wrapper {
    position: relative;
}

.histoire-decorative {
    aspect-ratio: 4/5;
    background: var(--dark);
    border: 1px solid rgba(198, 165, 92, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
}

.histoire-deco-diamond {
    width: 100px;
    height: 100px;
    color: var(--gold);
    opacity: 0.25;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    to { transform: rotate(360deg); }
}

.histoire-deco-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.histoire-deco-year {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.histoire-deco-dash {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.histoire-deco-location {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.histoire-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.histoire-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.histoire-badge-text {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    padding-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 165, 92, 0.3), transparent);
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding-top: 2rem;
    max-width: 280px;
}

.timeline-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--gold);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   CREATIONS
   ============================================ */
.creations {
    background: var(--dark);
}

.creations-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.creation-video-card {
    background: var(--dark-2);
    border: 1px solid rgba(198, 165, 92, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.creation-video-card:hover {
    border-color: rgba(198, 165, 92, 0.2);
}

.creation-video-wrapper {
    aspect-ratio: 16/9;
    background: var(--dark-3);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.creation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    transition: all 0.4s ease;
}

.play-button-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-button-overlay:hover {
    background: rgba(10, 10, 10, 0.2);
}

.play-button {
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.play-button-overlay:hover .play-button {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.play-button svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.creation-video-card--full {
    grid-column: 1 / -1;
}

.creation-video-wrapper--player {
    aspect-ratio: 16/9;
    background: var(--black);
    cursor: default;
}

.creation-video-wrapper--player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
    border-radius: 0;
}

.creation-video-info {
    padding: 1.5rem;
}

.creation-video-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.creation-video-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Categories */
.creations-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border: 1px solid rgba(198, 165, 92, 0.06);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198, 165, 92, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    border-color: rgba(198, 165, 92, 0.2);
    transform: translateY(-3px);
}

.category-card:hover::after {
    opacity: 1;
}

.category-inner {
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications {
    padding: 5rem 0;
    background: var(--black);
    border-top: 1px solid rgba(198, 165, 92, 0.06);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
}

.cert-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.2rem;
    color: var(--gold);
}

.cert-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.cert-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--dark);
}

.contact-layout {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.2rem;
}

.contact-detail h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.6;
}

.contact-detail a {
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-closed {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 0.2rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(198, 165, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.contact-social a svg {
    width: 18px;
    height: 18px;
}

.contact-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-2);
    border: 1px solid rgba(198, 165, 92, 0.08);
    padding: 3rem;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(198, 165, 92, 0.15);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--gold);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -0.6rem;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--black);
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* ============================================
   MAP
   ============================================ */
.map-section {
    position: relative;
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(1) brightness(0.4) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-section:hover iframe {
    filter: grayscale(0.5) brightness(0.6) contrast(1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(198, 165, 92, 0.08);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(198, 165, 92, 0.06);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 300;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-legal {
    margin-top: 0.3rem;
    font-size: 0.65rem !important;
    opacity: 0.5;
}

.footer-legal a {
    color: var(--gold);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creations-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .histoire-layout {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .histoire-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .histoire-visual {
        order: -1;
    }

    .histoire-badge {
        right: 0;
        bottom: -1.5rem;
    }

    .creations-showcase {
        grid-template-columns: 1fr;
    }

    .creations-categories {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .timeline::before {
        width: 1px;
        height: 100%;
        left: 0;
        top: 0;
        transform: none;
        background: linear-gradient(to bottom, transparent, rgba(198, 165, 92, 0.3), transparent);
    }

    .timeline-item {
        text-align: left;
        padding-top: 0;
        padding-left: 2rem;
        max-width: none;
    }

    .timeline-dot {
        top: 50%;
        left: -2rem;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .quote-section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.5rem 1.2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}
