:root {
    --bg: #f8f4ee;
    --bg-soft: #f2ebe2;
    --text: #141414;
    --muted: #666b73;
    --red: #d63a2f;
    --red-soft: #ef5b4f;
    --white: #ffffff;
    --line: rgba(0, 0, 0, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.14);
    --radius: 24px;
    --radius-lg: 30px;
    --container: 1200px;
    --transition: all 0.35s ease;
}

/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f8f5ef 0%, #f2ede5 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.page-main {
    padding-top: 88px;
}

.center {
    text-align: center;
    margin-top: 34px;
}

/* TYPO */

.section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    font-weight: 700;
}

.section-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 54px;
}

.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.04rem;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 245, 239, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 35, 40, 0.08);
    z-index: 1000;
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
}

.brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(31, 35, 40, 0.78);
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--red);
    border-radius: 999px;
}

.nav-phone {
    padding: 12px 18px;
    border: 1px solid rgba(31, 35, 40, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(18, 22, 27, 0.04);
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 35, 40, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 6px auto;
}

/* FLOATING CTA */

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a {
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(31, 35, 40, 0.10);
    backdrop-filter: blur(12px);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.floating-cta a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    color: #fff;
    box-shadow: 0 16px 32px rgba(214, 58, 47, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(214, 58, 47, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    border: 1px solid rgba(31, 35, 40, 0.10);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 22, 27, 0.08);
}

/* HOME */

.home-page {
    background:
        radial-gradient(circle at top right, rgba(214, 58, 47, 0.08), transparent 20%),
        linear-gradient(180deg, #f8f5ef 0%, #f2ede5 100%);
}

/* HERO */

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #111;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(15, 15, 15, 0.68) 0%,
        rgba(15, 15, 15, 0.46) 34%,
        rgba(15, 15, 15, 0.20) 65%,
        rgba(15, 15, 15, 0.08) 100%
    );
    z-index: 1;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 70px;
}

.home-hero-copy {
    max-width: 760px;
}

.home-hero-copy .section-kicker {
    color: #ff7a6f;
}

.home-hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    color: #fff8f0;
    max-width: 820px;
    margin-bottom: 24px;
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.home-hero-copy h1 span {
    color: #ffd1c9;
}

.home-hero-copy p {
    max-width: 700px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 248, 240, 0.92);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #fff8f0;
    font-size: 0.92rem;
}

/* HERO CARD */

.home-hero-card-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-card {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    padding: 30px;
    transform: rotate(-2deg);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 30px 70px rgba(18, 22, 27, 0.16);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.hero-badge {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(214, 58, 47, 0.10);
    color: #d63a2f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d63a2f;
    box-shadow: 0 0 0 10px rgba(214, 58, 47, 0.12);
}

.home-hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 14px;
    color: #141414;
}

.home-hero-card p {
    color: #5f6670;
    line-height: 1.8;
    margin-bottom: 22px;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-card-stats div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 35, 40, 0.07);
}

.hero-card-stats strong {
    display: block;
    font-size: 1.2rem;
    color: #d63a2f;
    margin-bottom: 6px;
}

.hero-card-stats span {
    color: #66707a;
    font-size: 0.92rem;
}

.home-floating-card {
    position: absolute;
    right: -10px;
    bottom: -18px;
    border-radius: 24px;
    padding: 18px 22px;
    min-width: 240px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.60);
    box-shadow: 0 24px 60px rgba(18,22,27,0.14);
    z-index: 5;
}
}

.home-floating-card small {
    display: inline-block;
    margin-bottom: 8px;
    color: #d63a2f;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.home-floating-card strong {
    display: block;
    font-size: 1.12rem;
    color: #141414;
}

/* TRUST */

.home-trust {
    margin-top: -56px;
    position: relative;
    z-index: 4;
    padding-bottom: 50px;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 54px rgba(18, 22, 27, 0.10);
}

.trust-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 58, 47, 0.10);
    color: #d63a2f;
    font-weight: 800;
    margin-bottom: 14px;
}

.trust-card h3 {
    font-size: 1.16rem;
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--muted);
    line-height: 1.75;
}

/* SIGNATURE */

.home-signature-section {
    padding: 100px 0;
}

.home-signature-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.home-signature-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 16px;
}

.home-signature-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.home-signature-panel {
    border-radius: var(--radius-lg);
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(214, 58, 47, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(31, 35, 40, 0.08);
    box-shadow: 0 22px 54px rgba(18, 22, 27, 0.10);
}

.signature-line {
    width: 100%;
    height: 110px;
    border-top: 2px solid rgba(31, 35, 40, 0.14);
    border-right: 2px solid rgba(31, 35, 40, 0.14);
    transform: skewX(-34deg);
    margin-bottom: 34px;
}

.signature-items {
    display: grid;
    gap: 18px;
}

.signature-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 35, 40, 0.07);
}

.signature-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.signature-item span {
    color: var(--muted);
    line-height: 1.7;
}

/* SERVICES */

.home-services-section {
    padding: 110px 0;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-premium-card {
    min-height: 240px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(31, 35, 40, 0.08);
    box-shadow: 0 18px 48px rgba(18, 22, 27, 0.08);
    transition: var(--transition);
}

.service-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(18, 22, 27, 0.12);
}

.service-premium-card-large {
    grid-column: span 2;
}

.service-premium-card-highlight {
    background: linear-gradient(135deg, rgba(214, 58, 47, 0.12), rgba(255, 255, 255, 0.88));
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 58, 47, 0.10);
    color: #d63a2f;
    font-weight: 800;
    margin-bottom: 18px;
}

.service-premium-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.service-premium-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* SHOWCASE */

.home-showcase-section {
    padding: 100px 0 110px;
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 260px;
    gap: 20px;
}

.showcase-item {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 52px rgba(18, 22, 27, 0.10);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.showcase-item:hover img {
    transform: scale(1.07);
}

.showcase-item-tall {
    grid-row: span 2;
}

.showcase-item-wide {
    grid-column: span 2;
}

/* CTA */

.home-cta-section {
    padding: 40px 0 110px;
}

.home-cta-box {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(214, 58, 47, 0.12), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(31, 35, 40, 0.08);
    box-shadow: 0 22px 60px rgba(18, 22, 27, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.home-cta-copy {
    max-width: 760px;
}

.home-cta-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3.9rem);
    line-height: 0.98;
    margin-bottom: 14px;
}

.home-cta-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* FOOTER */

.site-footer {
    margin-top: 40px;
    background:
        radial-gradient(circle at top center, rgba(214, 58, 47, 0.12), transparent 22%),
        linear-gradient(180deg, #181b1f 0%, #101214 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 72px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 2.1rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.85;
    margin-bottom: 18px;
    max-width: 520px;
}

.footer-inline-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-inline-links a {
    color: rgba(255, 255, 255, 0.88);
    transition: var(--transition);
}

.footer-inline-links a:hover {
    color: #ffffff;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul {
    display: grid;
    gap: 12px;
}

.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.92rem;
}/* =========================
   PAGE PRESTATIONS
========================= */

.page-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #111;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(15, 15, 15, 0.72) 0%,
        rgba(15, 15, 15, 0.48) 36%,
        rgba(15, 15, 15, 0.18) 68%,
        rgba(15, 15, 15, 0.08) 100%
    );
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.page-hero-copy {
    max-width: 820px;
}

.page-hero-copy .section-kicker {
    color: #ff7a6f;
}

.page-hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #fff8f0;
    margin-bottom: 24px;
    max-width: 980px;
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.page-hero-copy p {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 248, 240, 0.92);
}

.services-intro-section,
.services-list-section,
.services-method-section,
.services-cta-section {
    padding: 110px 0;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.services-intro-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 20px;
}

.services-intro-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.services-intro-panel {
    border-radius: var(--radius-lg);
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(214, 58, 47, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.74));
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 22px 54px rgba(18,22,27,0.10);
}

.services-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.services-mini-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(31,35,40,0.07);
}

.services-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.services-mini-card span {
    color: var(--muted);
    line-height: 1.7;
}

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

.service-detail-card {
    min-height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 18px 48px rgba(18,22,27,0.08);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(18,22,27,0.12);
}

.service-detail-card-highlight {
    background: linear-gradient(135deg, rgba(214,58,47,0.12), rgba(255,255,255,0.90));
}

.service-detail-card-urgent {
    background: linear-gradient(135deg, rgba(214,58,47,0.18), rgba(255,255,255,0.92));
    border-color: rgba(214,58,47,0.18);
}

.service-detail-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.service-detail-top h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
}

.service-detail-card p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-detail-card ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
}

.service-detail-card li {
    position: relative;
    padding-left: 18px;
    color: #41454d;
    line-height: 1.75;
}

.service-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.method-step {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 18px 48px rgba(18,22,27,0.08);
}

.method-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214,58,47,0.10);
    color: var(--red);
    font-weight: 800;
    margin-bottom: 16px;
}

.method-step h3 {
    margin-bottom: 12px;
    font-size: 1.14rem;
}

.method-step p {
    color: var(--muted);
    line-height: 1.8;
}

.services-cta-box {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(214,58,47,0.12), rgba(255,255,255,0.90));
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 22px 60px rgba(18,22,27,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.services-cta-copy {
    max-width: 760px;
}

.services-cta-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 0.98;
    margin-bottom: 14px;
}

.services-cta-copy p {
    color: var(--muted);
    line-height: 1.85;
}/* =========================
   PAGE CONTACT
========================= */

.contact-main-section,
.contact-bottom-section {
    padding: 110px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.contact-infos-panel,
.contact-form-panel,
.contact-bottom-box {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 18px 48px rgba(18,22,27,0.08);
    border-radius: 28px;
    padding: 34px;
}

.contact-infos-panel h2,
.contact-form-panel h2,
.contact-bottom-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.98;
    margin-bottom: 18px;
}

.contact-infos-panel > p,
.contact-bottom-box p {
    color: var(--muted);
    line-height: 1.85;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-info-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(31,35,40,0.07);
}

.contact-info-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.contact-info-card a,
.contact-info-card p {
    color: #20242a;
    line-height: 1.75;
}

.contact-note-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(214,58,47,0.12), rgba(255,255,255,0.92));
    border: 1px solid rgba(214,58,47,0.12);
}

.contact-note-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-note-box p {
    color: var(--muted);
    line-height: 1.75;
}

.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #20242a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(31,35,40,0.12);
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 15px 16px;
    font: inherit;
    color: #141414;
    outline: none;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(214,58,47,0.45);
    box-shadow: 0 0 0 4px rgba(214,58,47,0.08);
}

.form-submit-btn {
    min-width: 220px;
}

.form-alert {
    padding: 16px 18px;
    border-radius: 18px;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-alert-success {
    background: rgba(35, 166, 97, 0.12);
    border: 1px solid rgba(35, 166, 97, 0.22);
    color: #1f6f45;
}

.form-alert-error {
    background: rgba(214, 58, 47, 0.12);
    border: 1px solid rgba(214, 58, 47, 0.22);
    color: #8f2f26;
}

.contact-bottom-box {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-hero-copy {
    max-width: 720px;
    margin-left: 40px;
}/* =========================
   PREMIUM MOTION / MICRO-INTERACTIONS
========================= */

/* Apparitions douces */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Hero un peu plus vivant */
.home-hero,
.page-hero {
    background-attachment: scroll;
}

.home-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.10), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,0.08), transparent 16%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

/* On garde le contenu au-dessus */
.home-hero-inner,
.page-hero-inner {
    position: relative;
    z-index: 3;
}

/* Menu plus premium */
.main-nav a {
    transition: color 0.35s ease, transform 0.35s ease;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

/* Boutons plus luxueux */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.28),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.btn:hover::after {
    left: 140%;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

/* Cartes : lift + profondeur */
.home-hero-card,
.home-floating-card,
.trust-card,
.service-premium-card,
.service-detail-card,
.real-card,
.proof-card,
.method-step,
.contact-infos-panel,
.contact-form-panel,
.contact-bottom-box,
.home-signature-panel,
.services-intro-panel,
.realisations-intro-panel,
.services-cta-box,
.realisations-cta-box,
.home-cta-box {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.home-hero-card:hover,
.home-floating-card:hover,
.trust-card:hover,
.service-premium-card:hover,
.service-detail-card:hover,
.real-card:hover,
.proof-card:hover,
.method-step:hover,
.contact-infos-panel:hover,
.contact-form-panel:hover,
.contact-bottom-box:hover,
.home-signature-panel:hover,
.services-intro-panel:hover,
.realisations-intro-panel:hover,
.services-cta-box:hover,
.realisations-cta-box:hover,
.home-cta-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(18,22,27,0.14);
}

/* Cartes importantes : effet halo discret */
.home-hero-card,
.home-signature-panel,
.services-intro-panel,
.realisations-intro-panel,
.contact-form-panel {
    position: relative;
}

.home-hero-card::before,
.home-signature-panel::before,
.services-intro-panel::before,
.realisations-intro-panel::before,
.contact-form-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(214,58,47,0.14),
        transparent 30%,
        transparent 70%,
        rgba(214,58,47,0.08)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-hero-card:hover::before,
.home-signature-panel:hover::before,
.services-intro-panel:hover::before,
.realisations-intro-panel:hover::before,
.contact-form-panel:hover::before {
    opacity: 1;
}

/* Images : zoom doux */
.showcase-item,
.real-card-media {
    overflow: hidden;
}

.showcase-item img,
.real-card-media img {
    transition: transform 0.8s ease, filter 0.8s ease;
    will-change: transform;
}

.showcase-item:hover img,
.real-card:hover .real-card-media img {
    transform: scale(1.06);
    filter: saturate(1.04) contrast(1.02);
}

/* Petits badges / pills */
.hero-points span,
.realisations-badges span,
.services-mini-card,
.contact-info-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.hero-points span:hover,
.realisations-badges span:hover,
.services-mini-card:hover,
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(18,22,27,0.10);
}

/* Inputs plus premium */
.form-group input,
.form-group select,
.form-group textarea {
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
}

/* Titre hero : apparition plus noble */
.home-hero-copy h1,
.page-hero-copy h1 {
    animation: heroTitleReveal 1.1s ease both;
}

.home-hero-copy p,
.page-hero-copy p,
.hero-actions,
.hero-points {
    animation: heroFadeUp 1.2s ease both;
}

.home-hero-copy p,
.page-hero-copy p {
    animation-delay: 0.12s;
}

.hero-actions {
    animation-delay: 0.2s;
}

.hero-points {
    animation-delay: 0.28s;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA flottants moins basiques */
.floating-cta a {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.floating-cta a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 38px rgba(18,22,27,0.18);
}

/* Désactiver les animations trop fortes si l’utilisateur préfère moins de motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible,
    .btn,
    .showcase-item img,
    .real-card-media img,
    .home-hero-copy h1,
    .page-hero-copy h1,
    .home-hero-copy p,
    .page-hero-copy p,
    .hero-actions,
    .hero-points {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}/* =========================
   PAGE REALISATIONS
========================= */

.realisations-intro-section,
.realisations-gallery-section,
.realisations-proof-section,
.realisations-cta-section {
    padding: 110px 0;
}

.realisations-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.realisations-intro-copy h2,
.realisations-cta-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 18px;
}

.realisations-intro-copy p,
.realisations-cta-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.realisations-intro-panel,
.realisations-cta-box {
    border-radius: var(--radius-lg);
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(214,58,47,0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.74));
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 22px 54px rgba(18,22,27,0.10);
}

.realisations-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.realisations-badges span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(31,35,40,0.07);
    color: #2a2f36;
    font-weight: 500;
}

/* Nouvelle galerie */
.realisations-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.real-card {
    grid-column: span 4;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 18px 48px rgba(18,22,27,0.08);
    transition: var(--transition);
}

.real-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(18,22,27,0.12);
}

.real-card-featured {
    grid-column: span 8;
    position: relative;
    min-height: 560px;
}

.real-card-wide {
    grid-column: span 8;
}

.real-card-media {
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #e8e4dd;
}

.real-card-featured .real-card-media {
    height: 100%;
    aspect-ratio: auto;
}

.real-card-wide .real-card-media {
    aspect-ratio: 16 / 9;
}

.real-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.real-card:hover .real-card-media img {
    transform: scale(1.06);
    filter: saturate(1.04) contrast(1.02);
}

.real-card-content {
    padding: 24px;
}

.real-card-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 20px 50px rgba(18,22,27,0.14);
}

.real-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(214,58,47,0.10);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.real-card-content h3,
.real-card-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.real-card-content p,
.real-card-overlay p {
    color: var(--muted);
    line-height: 1.8;
}

.real-card-overlay p {
    color: #50565f;
}

/* Proof section plus compacte */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.proof-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(31,35,40,0.08);
    box-shadow: 0 18px 48px rgba(18,22,27,0.08);
}

.proof-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214,58,47,0.10);
    color: var(--red);
    font-weight: 800;
    margin-bottom: 16px;
}

.proof-card h3 {
    margin-bottom: 12px;
    font-size: 1.14rem;
}

.proof-card p {
    color: var(--muted);
    line-height: 1.8;
}

.realisations-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 520px;
    margin: auto;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #333;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}/* =========================
   LEGAL / RGPD
========================= */

.legal-section {
    padding: 120px 0;
}

.legal-container {
    max-width: 920px;
}

.legal-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.98;
    margin-bottom: 28px;
}

.legal-section h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.legal-section p {
    color: var(--muted);
    line-height: 1.9;
}

/* Consent form */
.form-consent {
    margin: 6px 0 22px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.consent-check input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.consent-check a {
    color: var(--red);
    text-decoration: underline;
}