/* ===========================================
   CASA NOVA — Ultra Premium Concierge
   =========================================== */

:root {
    /* Palette */
    --cream: #f6f1e7;
    --cream-2: #ece5d5;
    --beige: #ddd0b6;
    --ink: #0e0e0e;
    --ink-soft: #1a1a1a;
    --ink-2: #2a2a2a;
    --muted: #6b6557;
    --muted-2: #948c7d;
    --champagne: #c9a76b;
    --champagne-2: #a88652;
    --gold-light: #e5cf9c;
    --gold-soft: #d4b88a;
    --white: #ffffff;

    /* Lines */
    --line: rgba(14, 14, 14, 0.08);
    --line-2: rgba(14, 14, 14, 0.14);
    --line-light: rgba(246, 241, 231, 0.12);
    --line-light-2: rgba(246, 241, 231, 0.2);

    /* Type */
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --radius: 6px;
    --radius-lg: 14px;
    --radius-xl: 22px;

    --container: 1300px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: default;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.35s var(--ease);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

::selection { background: var(--ink); color: var(--gold-light); }

/* ============ GRAIN OVERLAY ============ */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ CURSOR BLOB ============ */
.cursor-blob {
    position: fixed;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 167, 107, 0.28) 0%, rgba(201, 167, 107, 0.08) 35%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s var(--ease), transform 0.18s var(--ease-out);
    filter: blur(40px);
    opacity: 0;
    mix-blend-mode: multiply;
    will-change: transform;
}
.cursor-blob.active { opacity: 1; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.018em;
    color: var(--ink);
    line-height: 1.06;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 300; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 1.9vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

em {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(120deg, var(--champagne) 0%, var(--gold-light) 50%, var(--champagne) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% 0; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
    margin-bottom: 24px;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--champagne);
}
.eyebrow.center { justify-content: center; }
.eyebrow.gold { color: var(--gold-light); }
.eyebrow.gold::before { background: var(--gold-light); }

.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ============ BUTTONS ============ */
.btn {
    --btn-py: 14px;
    --btn-px: 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: var(--btn-py) var(--btn-px);
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
}
.btn-lg { --btn-py: 17px; --btn-px: 36px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* Shine */
.btn::before {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease);
    z-index: 1;
    pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn-primary {
    background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
    color: var(--cream);
    border-color: var(--ink);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 30px rgba(14, 14, 14, 0.18);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 20px 40px rgba(168, 134, 82, 0.35),
        0 0 0 1px rgba(201, 167, 107, 0.5) inset;
    color: var(--gold-light);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    border-color: rgba(14, 14, 14, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 8px 24px rgba(14, 14, 14, 0.06);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--champagne);
    color: var(--champagne-2);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 14px 34px rgba(201, 167, 107, 0.25);
}

.btn-light {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.btn-light:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(229, 207, 156, 0.4);
}

.btn-call svg { transition: none; }
.btn-call:hover svg { transform: none; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid currentColor;
    transition: gap 0.4s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover {
    gap: 18px;
    color: var(--champagne-2);
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.5s var(--ease);
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(246, 241, 231, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease);
    opacity: 0;
}
.header.scrolled { padding: 12px 0; }
.header.scrolled::before {
    opacity: 1;
    border-bottom-color: var(--line);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.logo-mark {
    width: 40px; height: 40px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.5s var(--ease);
    background: transparent;
}
.logo:hover .logo-mark {
    background: var(--ink);
    color: var(--gold-light);
    border-color: var(--ink);
    transform: rotate(360deg);
}
.logo-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--ink);
}
.logo-light .logo-mark { border-color: var(--cream); color: var(--cream); }
.logo-light .logo-text { color: var(--cream); }

.nav {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 22px rgba(14, 14, 14, 0.04);
}
.nav a {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 9px 18px;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
    position: relative;
}
.nav a:hover {
    background: var(--ink);
    color: var(--gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.burger {
    display: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    width: 44px; height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.burger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: var(--cream);
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.1s linear;
    filter: saturate(0.95) brightness(0.92);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(14, 14, 14, 0.45) 0%, rgba(14, 14, 14, 0.25) 35%, rgba(14, 14, 14, 0.7) 100%),
        radial-gradient(ellipse at 70% 30%, rgba(201, 167, 107, 0.18), transparent 60%);
}

.hero-inner {
    position: relative;
    padding-bottom: 100px;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    padding: 8px 18px 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(246, 241, 231, 0.95);
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(229, 207, 156, 0.25);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(229, 207, 156, 0.25); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(229, 207, 156, 0.1); }
}

.hero-title {
    max-width: 1100px;
    color: var(--cream);
    margin-bottom: 36px;
    font-weight: 300;
}
.title-line {
    display: block;
    overflow: hidden;
}
.title-line em {
    background: linear-gradient(120deg, var(--gold-light) 0%, var(--white) 50%, var(--gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 7s linear infinite;
}

.hero-subtitle {
    max-width: 620px;
    font-size: 1.08rem;
    color: rgba(246, 241, 231, 0.85);
    line-height: 1.75;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    padding-bottom: 32px;
}
.hero-proofs {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-top: 28px;
    border-top: 1px solid rgba(246, 241, 231, 0.18);
}
.proof {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(246, 241, 231, 0.9);
}
.proof-num {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
}
.proof-text {
    font-size: 0.92rem;
}
.scroll-cue { margin-left: auto; flex-direction: row; align-items: center; gap: 10px; }
.scroll-cue .proof-text { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.25em; }
.scroll-arrow {
    display: inline-block;
    color: var(--gold-light);
    animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============ MARQUEE ============ */
.marquee {
    overflow: hidden;
    padding: 28px 0;
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid rgba(246, 241, 231, 0.06);
    border-bottom: 1px solid rgba(246, 241, 231, 0.06);
}
.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(246, 241, 231, 0.5);
}
.marquee-track span { display: inline-block; }
.m-sep {
    color: var(--gold-light);
    font-style: normal;
    font-size: 1rem;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
    padding: 140px 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ SPOTLIGHT EFFECT ============ */
.spotlight {
    position: relative;
}
.spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mx, 50%) var(--my, 50%),
        rgba(201, 167, 107, 0.22),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 1;
}
.spotlight:hover::before { opacity: 1; }

/* Glow border qui suit le curseur */
.spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        300px circle at var(--mx, 50%) var(--my, 50%),
        rgba(201, 167, 107, 0.7),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 2;
}
.spotlight:hover::after { opacity: 1; }

/* ============ STATS ============ */
.stats {
    background: var(--cream);
    padding: 120px 0;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 80px;
    align-items: end;
}
.stat-big .stat-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--champagne-2);
    margin-bottom: 24px;
}
.stat-claim {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.05;
}
.stat-big p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 460px;
}
.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.stat-cards .stat-card:nth-child(1) { transform: translateY(-32px); }
.stat-cards .stat-card:nth-child(4) { transform: translateY(32px); }

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 30px rgba(168, 134, 82, 0.08);
}
.stat-card:hover {
    border-color: rgba(201, 167, 107, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 50px rgba(168, 134, 82, 0.22);
}
.stat-cards .stat-card:nth-child(1):hover { transform: translateY(-38px); }
.stat-cards .stat-card:nth-child(4):hover { transform: translateY(26px); }
.stat-cards .stat-card:nth-child(2):hover,
.stat-cards .stat-card:nth-child(3):hover { transform: translateY(-6px); }

.stat-num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.stat-pct {
    font-size: 0.5em;
    background: linear-gradient(120deg, var(--champagne) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}
.stat-suffix {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--champagne-2);
    margin-bottom: 18px;
}
.stat-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ PROBLEM SOLUTION ============ */
.problem-solution { background: var(--cream); }

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.ps-left h2 { margin-bottom: 28px; }
.ps-left > p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.ps-list {
    list-style: none;
}
.ps-list li {
    padding: 16px 0 16px 32px;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
    color: var(--ink-soft);
    position: relative;
    transition: padding 0.4s var(--ease), color 0.3s var(--ease);
}
.ps-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px; height: 1px;
    background: var(--champagne);
    transition: width 0.4s var(--ease);
}
.ps-list li:hover {
    padding-left: 44px;
    color: var(--champagne-2);
}
.ps-list li:hover::before { width: 30px; }

.ps-card {
    background: linear-gradient(160deg, var(--ink) 0%, #1c1c1c 100%);
    color: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(14, 14, 14, 0.15);
}
.ps-card-inner {
    position: relative;
    padding: 60px 52px;
    z-index: 2;
}
.ps-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 167, 107, 0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}
.ps-card h3 {
    color: var(--cream);
    margin-bottom: 24px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
}
.ps-card p {
    color: rgba(246, 241, 231, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}
.ps-card .link-arrow {
    color: var(--gold-light);
}
.ps-card .link-arrow:hover { color: var(--white); }

/* ============ SERVICES ============ */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

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

.services-grid.bento {
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}
.services-grid.bento .service-card:nth-child(1) {
    grid-row: 1 / span 2;
    background: linear-gradient(165deg, var(--ink) 0%, #1d1d1d 100%);
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.08);
}
.services-grid.bento .service-card:nth-child(1) h3,
.services-grid.bento .service-card:nth-child(1) .service-num {
    color: var(--gold-light);
}
.services-grid.bento .service-card:nth-child(1) .card-inner > p {
    color: rgba(246, 241, 231, 0.72);
}
.services-grid.bento .service-card:nth-child(1) .service-icon {
    background: rgba(201, 167, 107, 0.12);
    border-color: rgba(201, 167, 107, 0.3);
    color: var(--gold-light);
}
.services-grid.bento .service-card:nth-child(1) .service-points {
    border-top-color: rgba(246, 241, 231, 0.1);
}
.services-grid.bento .service-card:nth-child(1) .service-points li {
    color: rgba(246, 241, 231, 0.85);
}
.services-grid.bento .service-card:nth-child(1):hover {
    border-color: rgba(201, 167, 107, 0.5);
    box-shadow: 0 30px 70px rgba(168, 134, 82, 0.3);
}

.service-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 36px rgba(14, 14, 14, 0.06);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    overflow: hidden;
}
.card-inner {
    position: relative;
    padding: 48px 44px;
    z-index: 2;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 167, 107, 0.55);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 30px 60px rgba(168, 134, 82, 0.22),
        0 0 0 1px rgba(201, 167, 107, 0.08);
}

.service-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
    border: 1px solid var(--line);
    color: var(--champagne-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s var(--ease);
    position: relative;
}
.service-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--champagne), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: -1;
    animation: rotate 4s linear infinite;
}
.service-card:hover .service-icon {
    background: var(--ink);
    color: var(--gold-light);
    border-color: var(--ink);
    transform: scale(1.05);
}
.service-card:hover .service-icon::after { opacity: 0.8; }
@keyframes rotate {
    to { transform: rotate(360deg); }
}

.service-num {
    position: absolute;
    top: 36px;
    right: 36px;
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--champagne-2);
    letter-spacing: 0.1em;
}

.service-card h3 { margin-bottom: 14px; }
.card-inner > p {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 0.96rem;
    line-height: 1.7;
}

.service-points {
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.service-points li {
    position: relative;
    padding: 7px 0 7px 24px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.service-points li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 12px; height: 1px;
    background: var(--champagne);
}

/* ============ ABOUT ============ */
.about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(14, 14, 14, 0.18);
    transition: transform 0.7s var(--ease);
}
.about-image-wrap:hover .about-image { transform: scale(1.02); }
.about-image-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, transparent 50%, rgba(14, 14, 14, 0.3));
    pointer-events: none;
}

.glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 40px rgba(14, 14, 14, 0.1);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -28px;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
}
.badge-num {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--ink);
    line-height: 1;
    font-weight: 400;
}
.badge-num sup { font-size: 1rem; color: var(--champagne-2); }
.badge-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    line-height: 1.4;
}

.about-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 10px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
}
.about-tag .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #43c47b;
    box-shadow: 0 0 0 3px rgba(67, 196, 123, 0.2);
    animation: pulse 2s ease-in-out infinite;
}
.about-tag .dot.gold { background: var(--champagne); box-shadow: 0 0 0 3px rgba(201, 167, 107, 0.25); }

.about-content h2 { margin-bottom: 28px; }
.lead {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 48px;
}

.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
}
.value {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    position: relative;
}
.v-num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--champagne-2);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.value h4 {
    color: var(--ink);
    margin-bottom: 10px;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
}
.value p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ============ HOW ============ */
.how {
    background: var(--cream-2);
    position: relative;
}
.how::before {
    content: "";
    position: absolute;
    top: 20%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 167, 107, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 36px rgba(14, 14, 14, 0.06);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.step:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 167, 107, 0.5);
    box-shadow: 0 30px 60px rgba(168, 134, 82, 0.12);
}

.step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.step-num {
    font-family: var(--serif);
    font-size: 2rem;
    background: linear-gradient(120deg, var(--champagne) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.step-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--champagne);
    box-shadow: 0 0 0 4px rgba(201, 167, 107, 0.2);
}
.step h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    line-height: 1.25;
}
.step p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ============ ZONES (SEO local) ============ */
.zones {
    background: var(--cream);
    padding: 130px 0;
    position: relative;
}
.zones-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.zones-intro h2 {
    margin-bottom: 28px;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}
.zones-intro .lead { margin-bottom: 32px; }

.zones-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.zone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.45s var(--ease);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 6px 18px rgba(168, 134, 82, 0.06);
}
.zone-pill .z-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--champagne);
    transition: all 0.4s var(--ease);
}
.zone-pill:hover {
    background: var(--ink);
    color: var(--gold-light);
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(14, 14, 14, 0.18);
}
.zone-pill:hover .z-dot {
    background: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(229, 207, 156, 0.25);
}
.zone-pill.featured {
    background: var(--ink);
    color: var(--gold-light);
    border-color: var(--ink);
}
.zone-pill.featured .z-dot { background: var(--gold-light); box-shadow: 0 0 0 3px rgba(229, 207, 156, 0.25); }

/* ============ COMMITMENTS / RÉASSURANCE ============ */
.commitments {
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.commit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(168, 134, 82, 0.08);
}
.commit {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px;
    transition: all 0.5s var(--ease);
    position: relative;
}
.commit:hover {
    background: var(--ink);
    color: var(--cream);
}
.commit:hover h4 { color: var(--gold-light); }
.commit:hover .commit-num { color: var(--gold-light); }
.commit:hover p { color: rgba(246, 241, 231, 0.72); }

.commit-num {
    display: block;
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--champagne-2);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    transition: color 0.4s var(--ease);
}
.commit h4 {
    color: var(--ink);
    font-size: 1.15rem;
    margin-bottom: 12px;
    transition: color 0.4s var(--ease);
}
.commit p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    transition: color 0.4s var(--ease);
}

/* ============ FOR WHO ============ */
.forwho { background: var(--cream); }

.profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.profile {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4.4;
    cursor: pointer;
    isolation: isolate;
}
.profile-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s var(--ease);
    filter: saturate(0.95);
}
.profile:hover .profile-image { transform: scale(1.08); }
.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(14, 14, 14, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 36px;
}
.profile-content {
    color: var(--cream);
    transform: translateY(0);
    transition: transform 0.5s var(--ease);
}
.profile:hover .profile-content { transform: translateY(-4px); }
.profile-num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.profile h3 {
    color: var(--cream);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}
.profile p {
    color: rgba(246, 241, 231, 0.85);
    font-size: 0.92rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease), opacity 0.4s var(--ease), margin-top 0.5s var(--ease);
}
.profile:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 4px;
}

/* ============ MANIFESTO ============ */
.manifesto {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 160px 0;
    overflow: hidden;
    isolation: isolate;
}
.manifesto-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.manifesto-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: saturate(0.8) blur(2px);
    transform: scale(1.05);
}
.manifesto-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 167, 107, 0.2), transparent 60%),
        linear-gradient(180deg, var(--ink) 0%, rgba(14, 14, 14, 0.75) 50%, var(--ink) 100%);
}
.manifesto-inner {
    position: relative;
    z-index: 2;
}
.manifesto-kicker {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.manifesto-kicker span {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--champagne);
}
.manifesto-text {
    font-size: clamp(2.6rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 80px;
    max-width: 1200px;
}
.manifesto-text em {
    background: linear-gradient(120deg, var(--gold-light) 0%, var(--white) 50%, var(--gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 7s linear infinite;
}
.m-line { display: block; }
.manifesto-foot {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
    padding-top: 40px;
    border-top: 1px solid rgba(246, 241, 231, 0.15);
}
.manifesto-foot p {
    color: rgba(246, 241, 231, 0.7);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 600px;
}
.link-arrow.light {
    color: var(--gold-light);
    border-color: var(--gold-light);
    justify-self: end;
}
.link-arrow.light:hover { color: var(--cream); }

/* ============ CTA BAND ============ */
.cta-band {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 167, 107, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 167, 107, 0.15), transparent 50%);
    filter: blur(20px);
}
.cta-band-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.cta-band h2 {
    color: var(--cream);
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 12px;
}
.cta-band p {
    color: rgba(246, 241, 231, 0.7);
    max-width: 600px;
    font-size: 1rem;
}

/* ============ FAQ ============ */
.faq { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.faq-container { max-width: 900px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 24px rgba(14, 14, 14, 0.04);
}
.faq-item:hover { border-color: rgba(201, 167, 107, 0.4); }
.faq-item[open] {
    border-color: rgba(201, 167, 107, 0.5);
    box-shadow: 0 18px 44px rgba(168, 134, 82, 0.1);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 32px;
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--champagne-2); }

.faq-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(201, 167, 107, 0.12);
    border: 1px solid rgba(201, 167, 107, 0.25);
    position: relative;
    transition: all 0.4s var(--ease);
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: var(--champagne-2);
    transition: transform 0.4s var(--ease);
}
.faq-icon::before {
    width: 12px; height: 1.2px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 1.2px; height: 12px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
    background: var(--ink);
    border-color: var(--ink);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--gold-light); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    padding: 0 32px 28px;
}
.faq-answer p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.contact-intro h2 { margin-bottom: 24px; }
.contact-intro .lead { margin-bottom: 40px; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-line {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    color: var(--ink);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}
.info-line.static { cursor: default; }
.info-line:not(.static):hover {
    transform: translateY(-2px);
    border-color: var(--champagne);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 38px rgba(201, 167, 107, 0.18);
}
.info-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}
.info-line:hover .info-icon {
    background: var(--champagne);
    color: var(--ink);
}
.info-line > div:not(.info-icon) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}
.info-value {
    color: var(--ink);
    font-size: 0.95rem;
}
.info-arrow {
    color: var(--muted);
    transition: all 0.4s var(--ease);
}
.info-line:hover .info-arrow {
    color: var(--champagne-2);
    transform: translateX(4px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 52px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 30px 80px rgba(14, 14, 14, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: all 0.3s var(--ease);
    width: 100%;
    resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--champagne);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 167, 107, 0.12);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}
.check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    cursor: pointer;
    color: var(--ink-soft);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}
.check:hover { border-color: var(--champagne); }
.check input {
    appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--line-2);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.check input:checked {
    background: var(--ink);
    border-color: var(--ink);
}
.check input:checked::after {
    content: "";
    position: absolute;
    top: 2px; left: 5px;
    width: 5px; height: 9px;
    border-right: 1.5px solid var(--gold-light);
    border-bottom: 1.5px solid var(--gold-light);
    transform: rotate(45deg);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    flex-wrap: wrap;
}
.form-trust .t-sep { color: var(--champagne); }

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99;
    gap: 10px;
    padding: 10px;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(246, 241, 231, 0.12);
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(14, 14, 14, 0.35);
    transform: translateY(120%);
    transition: transform 0.5s var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.mcta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(246, 241, 231, 0.1);
    color: var(--gold-light);
    flex-shrink: 0;
}
.mcta-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 100px;
    background: var(--gold-light);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--ink);
    color: rgba(246, 241, 231, 0.7);
    padding: 100px 0 32px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 800px;
    background: radial-gradient(ellipse, rgba(201, 167, 107, 0.18), transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.footer-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 72px;
    margin-bottom: 64px;
    border-bottom: 1px solid rgba(246, 241, 231, 0.08);
}
.footer-claim {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    max-width: 700px;
}
.footer-top .btn-glass {
    background: rgba(246, 241, 231, 0.08);
    color: var(--cream);
    border-color: rgba(246, 241, 231, 0.2);
}
.footer-top .btn-glass:hover {
    background: var(--gold-light);
    color: var(--ink);
    border-color: var(--gold-light);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo { margin-bottom: 22px; }
.footer-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.footer-zone {
    font-size: 0.9rem;
    color: rgba(246, 241, 231, 0.55);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: rgba(246, 241, 231, 0.65);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
    position: relative;
    display: inline-block;
}
.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(246, 241, 231, 0.08);
    font-size: 0.82rem;
    color: rgba(246, 241, 231, 0.5);
}
.credit a {
    color: var(--gold-light);
    transition: color 0.3s var(--ease);
}
.credit a:hover { color: var(--cream); }

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav, .btn-call { display: none; }
    .burger { display: flex; }
    .header-actions { gap: 10px; }

    .nav.open {
        display: flex;
        position: fixed;
        top: 78px;
        left: 22px;
        right: 22px;
        flex-direction: column;
        padding: 18px;
        gap: 4px;
        background: rgba(246, 241, 231, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        box-shadow: 0 30px 60px rgba(14, 14, 14, 0.1);
    }
    .nav.open a {
        padding: 14px 18px;
        border-radius: 10px;
    }

    .ps-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid.bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .services-grid.bento .service-card:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }

    .stats-grid { grid-template-columns: 1fr; gap: 60px; }
    .stat-cards .stat-card:nth-child(1),
    .stat-cards .stat-card:nth-child(4) { transform: none; }

    .manifesto-foot { grid-template-columns: 1fr; gap: 32px; }
    .link-arrow.light { justify-self: start; }

    .zones-grid { grid-template-columns: 1fr; gap: 50px; }
    .commit-grid { grid-template-columns: 1fr 1fr; }

    .mobile-cta { display: flex; }
    .header-actions .btn-primary { display: none; }
    .steps { grid-template-columns: 1fr 1fr; }
    .profiles { grid-template-columns: 1fr 1fr; }
    .profiles .profile:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16/8; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-top { flex-direction: column; align-items: flex-start; text-align: left; }

    .cursor-blob { display: none; }
}

@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .section { padding: 90px 0; }

    .hero { padding: 130px 0 0; }
    .hero-inner { padding-bottom: 70px; }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .hero-proofs { gap: 22px; }
    .scroll-cue { display: none; }

    .marquee-track { font-size: 1.3rem; gap: 36px; }

    .steps { grid-template-columns: 1fr; }
    .profiles { grid-template-columns: 1fr; }
    .services-grid.bento { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr; }
    .manifesto { padding: 100px 0; }
    .commit-grid { grid-template-columns: 1fr; }
    .zone-pill { padding: 12px 18px 12px 14px; font-size: 0.86rem; }
    .form-trust { font-size: 0.72rem; gap: 8px; }
    .profiles .profile:nth-child(3) { aspect-ratio: 3/4.4; }

    .card-inner { padding: 36px 28px; }
    .ps-card-inner { padding: 44px 32px; }

    .about-badge { right: 12px; bottom: -20px; padding: 18px 22px; }
    .badge-num { font-size: 2rem; }
    .values { grid-template-columns: 1fr; gap: 24px; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .cta-band .btn { width: 100%; }

    .faq-item summary { padding: 22px 24px; font-size: 1.05rem; }
    .faq-icon { width: 30px; height: 30px; }
    .faq-answer { padding: 0 24px 24px; }

    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
