/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
    --gold:      #dbb85d;
    --charcoal:  #282424;
    --black:     #000000;
    --white:     #ffffff;
    --white-70:  rgba(255,255,255,0.7);
    --white-60:  rgba(255,255,255,0.6);
    --white-50:  rgba(255,255,255,0.5);
    --white-10:  rgba(255,255,255,0.1);
    --white-05:  rgba(255,255,255,0.05);
    --gold-30:   rgba(219,184,93,0.30);
    --gold-10:   rgba(219,184,93,0.10);
    --gold-05:   rgba(219,184,93,0.05);
    --font-serif: 'Montserrat', sans-serif;
    --font-sans:  'Inter', sans-serif;
    --header-h:  80px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-serif); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold   { color: var(--gold); }
.muted  { color: var(--white-50); }
.hide-mobile { display: block; }

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.5s ease, padding 0.4s ease, border-color 0.4s ease;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
}

#site-header.scrolled {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    border-bottom-color: var(--white-10);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link { display: block; position: relative; z-index: 110; }

#logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    object-position: left;
    transition: height 0.5s ease;
}

#site-header.scrolled #logo-img { height: 50px; }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 3rem;
}

.desktop-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero-wrapper {
    position: relative;
    background: #000;
    height: 400vh;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas-scale {
    width: 100%;
    height: 100%;
    transform: scale(0.9) translateY(30px);
    transform-origin: center;
    position: relative;
}

#hero-canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: opacity 0.5s;
}

.hero-spinner.hidden { opacity: 0; pointer-events: none; }

.spinner-ring {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(219,184,93,0.5);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    width: 100%;
}

.hero-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.1s, transform 0.1s;
}

/* Scene 1 */
.hero-text-block { max-width: 100%; }

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-phrase-wrapper {
    display: inline;
    position: relative;
}

.hero-phrase {
    display: inline-block;
    vertical-align: top;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-phrase.fade-exit  { opacity: 0; transform: translateY(-20px); }
.hero-phrase.fade-enter { opacity: 0; transform: translateY(20px); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--white-70);
    font-style: italic;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.hero-body p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scene 2 */
.scene2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 64rem;
    margin-left: auto;
    padding-top: 5rem;
}

.scene2-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.scene2-timeline {
    border-left: 1px solid var(--gold-30);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.s2-item { position: relative; }

.s2-dot {
    position: absolute;
    left: -2.9rem;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--charcoal);
    border: 2px solid var(--gold);
}

.s2-year {
    display: block;
    color: var(--gold);
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.s2-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.s2-content p {
    color: var(--white-60);
    font-size: 0.875rem;
    line-height: 1.6;
}

.scene2-right {
    border-left: 1px solid var(--white-10);
    padding-left: 2rem;
}

.projets-title {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    color: var(--white-50);
    margin-bottom: 2rem;
}

.projets-list { display: flex; flex-direction: column; gap: 2rem; }

.projet-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.projet-role {
    color: var(--gold);
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.projet-impact {
    color: var(--white-60);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(219,184,93,0.3);
}
.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    border-radius: 9999px;
}

/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════ */
.section {
    position: relative;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section { padding: 7rem 0; }
}

.section-black    { background: #000; }
.section-charcoal { background: var(--charcoal); }
.section-bordered { border-top: 1px solid var(--white-05); border-bottom: 1px solid var(--white-05); }

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3.5rem;
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 5rem; }
}

.eyebrow {
    display: block;
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--white);
    line-height: 1.15;
}

/* Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}
.glow-top-right {
    top: -20%; right: -10%;
    width: 50%; height: 50%;
    background: var(--gold-05);
}
.glow-bottom-left {
    bottom: -20%; left: -10%;
    width: 50%; height: 50%;
    background: rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pillars-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(4,1fr); }
}

.pillar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem;
    background: var(--white-05);
    border: 1px solid var(--white-05);
    border-radius: 1.5rem;
    backdrop-filter: blur(4px);
    transition: background 0.5s, border-color 0.5s, transform 0.5s, box-shadow 0.5s;
    cursor: default;
}

.pillar-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--gold-30);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px -10px rgba(219,184,93,0.15);
}

.pillar-card:hover .pillar-icon { border-color: rgba(219,184,93,0.5); background: var(--gold-05); color: var(--gold); }
.pillar-card:hover h4 { color: var(--gold); }
.pillar-card:hover .pillar-items p { color: rgba(255,255,255,0.8); }

.pillar-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}

.pillar-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    transition: color 0.5s;
}

.pillar-items { width: 100%; }

.pillar-items p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.pillar-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0 25%;
}

/* ═══════════════════════════════════════════════════════
   EXPERTISES
═══════════════════════════════════════════════════════ */
.expertises-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .expertises-grid { grid-template-columns: repeat(2,1fr); }
}

.expertise-card {
    position: relative;
    background: #111;
    padding: 1.75rem;
    border: 1px solid var(--white-05);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

@media (min-width: 768px) { .expertise-card { padding: 2.5rem 3rem; } }

.expertise-card:hover { border-color: var(--gold-30); }
.expertise-card:hover .expertise-icon { transform: scale(1.1); }
.expertise-card:hover .expertise-corner-glow { transform: scale(1.1); }

.expertise-corner-glow {
    position: absolute;
    top: 0; right: 0;
    width: 8rem; height: 8rem;
    background: var(--gold-05);
    border-radius: 0 0 0 50%;
    margin-right: -4rem;
    margin-top: -4rem;
    transition: transform 0.3s;
}

.expertise-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--charcoal);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.expertise-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative; z-index: 1;
}

.expertise-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}

.feature-list {
    list-style: none;
    border-top: 1px solid var(--white-10);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative; z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.feature-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   METHODOLOGY
═══════════════════════════════════════════════════════ */
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .methodology-grid { grid-template-columns: repeat(3,1fr); }
}

.method-connector {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-30), transparent);
    z-index: 0;
}

@media (min-width: 768px) { .method-connector { display: block; } }

.method-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--white-05);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.method-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: #111;
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 0 0 transparent;
}

.muted-icon  { color: rgba(255,255,255,0.6); }
.gold-icon   { /* svg already gold */ }
.white-icon  { /* svg already white */ }

.method-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.method-subtitle {
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.method-card > p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   CAS CLIENTS
═══════════════════════════════════════════════════════ */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3,1fr); } }

.case-card {
    background: var(--charcoal);
    border: 1px solid var(--white-05);
    border-radius: 0.5rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

@media (min-width: 768px) { .case-card { padding: 2rem; } }

.case-card:hover { border-color: var(--gold-30); }

.case-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold-10);
    color: var(--gold);
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.case-header h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.case-body { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.case-label {
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
}
.case-block p, .case-result p:last-child { color: rgba(255,255,255,0.8); font-weight: 300; }

.case-action {
    border-left: 2px solid var(--gold-30);
    padding-left: 1rem;
}

.case-result {
    border-top: 1px solid var(--white-10);
    padding-top: 1rem;
    margin-top: auto;
}

.gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   PARCOURS
═══════════════════════════════════════════════════════ */
.parcours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .parcours-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.parcours-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 3rem;
}

.parcours-timeline {
    border-left: 1px solid var(--gold-30);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .parcours-timeline { padding-left: 2.5rem; gap: 4rem; }
}

.pt-item { position: relative; }

.pt-dot {
    position: absolute;
    left: -2.9rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--gold);
    z-index: 2;
    transform-origin: center;
    transition: transform 0.5s, background 0.5s;
}

.pt-ring {
    position: absolute;
    left: -3.3rem;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid var(--gold-30);
    transition: transform 0.5s;
}

.pt-item:hover .pt-dot { transform: scale(1.5); background: var(--white); }
.pt-item:hover .pt-ring { transform: scale(1.1); }
.pt-item:hover .pt-content h3 { color: var(--gold); }

.pt-year {
    display: block;
    color: var(--gold);
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pt-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    transition: color 0.3s;
    margin-bottom: 0.75rem;
}

.pt-content p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 28rem;
}

.parcours-right { display: none; }
@media (min-width: 1024px) { .parcours-right { display: flex; align-items: center; justify-content: center; } }

.parcours-frame {
    position: relative;
    width: 100%;
    max-width: 24rem;
    aspect-ratio: 3 / 4;
}

.parcours-frame-deco {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    right: -1.5rem; bottom: -1.5rem;
    border: 1px solid var(--gold-30);
    z-index: 0;
    transition: transform 0.7s;
}

.parcours-frame:hover .parcours-frame-deco { transform: translate(8px, 8px); }

.parcours-img-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: var(--charcoal);
}

.parcours-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.8;
    transition: filter 0.7s, opacity 0.7s;
}

.parcours-img:hover { filter: grayscale(0); opacity: 1; }

.parcours-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40,36,36,0.4), transparent);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }

.contact-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.contact-glow::after {
    content: '';
    display: block;
    width: 50rem;
    height: 50rem;
    background: var(--gold-05);
    border-radius: 50%;
    filter: blur(120px);
}

.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.contact-card {
    position: relative;
    width: 100%;
    max-width: 64rem;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    cursor: default;
}

@media (min-width: 480px) { .contact-card { aspect-ratio: 16 / 9; } }
@media (min-width: 768px) { .contact-card { aspect-ratio: 21 / 9; margin-bottom: 4rem; } }

.contact-card:hover .contact-card-glow { opacity: 1; }

.contact-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(219,184,93,0.1), transparent);
    opacity: 0;
    transition: opacity 0.7s;
}

.contact-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: clamp(6rem, 20vw, 12.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
}

.contact-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@media (min-width: 768px) { .contact-card-content { padding: 4rem; } }

.contact-title {
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    color: var(--white);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .contact-buttons { flex-direction: row; justify-content: center; }
}

.contact-tagline {
    margin-top: 3rem;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid var(--white-10);
    padding: 3rem 0 6rem;
}

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

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--white-50);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 20rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold-30);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
    font-size: 0.875rem;
    color: var(--white-50);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-credit {
    font-size: 0.75rem;
    color: var(--white-50);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid var(--white-05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom > p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .desktop-nav  { display: none; }
    .hamburger    { display: flex; }
    .hide-mobile  { display: none; }
    .scene2-grid  { grid-template-columns: 1fr; }
    .scene2-right { display: none; }
}
