/* ═══════════════════════════════════════
   FTHL — Shared Stylesheet (v2 Redesign)
   ═══════════════════════════════════════ */

/* ─── Variables & Reset ─── */
:root {
    --oak: #1A7A3D;
    --oak-light: #228B4A;
    --amber: #F39200;
    --amber-glow: #F5A623;
    --slate: #4A5568;
    --slate-dark: #2D3748;
    --cream: #F8FAF8;
    --cream-warm: #EFF5EF;
    --stone: #B0C4B0;
    --stone-light: #D4E4D4;
    --white: #FAFFF9;
    --charcoal: #1A1A1A;
    --forest: #14662E;

    --placeholder-bg: #E4EBE4;
    --placeholder-bg2: #D8E2D8;
    --placeholder-icon: #A8BEA8;

    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Barlow', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 1px 3px rgba(26, 122, 61, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 122, 61, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 122, 61, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 122, 61, 0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Grain Overlay ─── */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   PHOTO PLACEHOLDER (Reusable)
   ═══════════════════════════════════════ */
.photo-placeholder {
    background: linear-gradient(145deg, var(--placeholder-bg) 0%, var(--placeholder-bg2) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 14px,
        rgba(0,0,0,0.018) 14px,
        rgba(0,0,0,0.018) 15px
    );
}

.photo-placeholder::after {
    content: '';
    width: 56px;
    height: 56px;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23748C74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.photo-placeholder.has-image::after,
.photo-placeholder.has-image::before {
    display: none;
}

.photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.photo-placeholder--16x9 { aspect-ratio: 16/9; min-height: auto; }
.photo-placeholder--4x3 { aspect-ratio: 4/3; min-height: auto; }
.photo-placeholder--3x4 { aspect-ratio: 3/4; min-height: auto; }
.photo-placeholder--square { aspect-ratio: 1; min-height: auto; }

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--stone-light);
    padding: 1.75rem 2rem;
}

.trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream-warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--oak);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item-text strong {
    display: block;
    font-size: 0.82rem;
    color: var(--charcoal);
    font-weight: 600;
}

.trust-item-text span {
    font-size: 0.72rem;
    color: var(--slate);
    font-weight: 300;
}

/* ═══════════════════════════════════════
   PHOTO BREAK (Full-width)
   ═══════════════════════════════════════ */
.photo-break {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--placeholder-bg) 0%, var(--placeholder-bg2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.015) 20px,
        rgba(0,0,0,0.015) 21px
    );
}

.photo-break::after {
    content: '';
    width: 72px;
    height: 72px;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23748C74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.photo-break img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-break.has-image::before,
.photo-break.has-image::after {
    display: none;
}

/* ═══════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    gap: 0.75rem;
}

.mobile-cta-btn {
    flex: 1;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

.mobile-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-cta-btn--call {
    background: var(--oak);
    color: var(--white);
}

.mobile-cta-btn--devis {
    background: var(--amber);
    color: var(--white);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2rem;
    box-shadow: 0 1px 20px rgba(26, 122, 61, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), filter 0.5s;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 12px rgba(243, 146, 0, 0.35));
}

.nav.scrolled .nav-logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.5s var(--ease-out-expo);
}

.nav.scrolled .nav-links a {
    color: var(--slate-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-glow);
    transition: width 0.4s var(--ease-out-expo);
}

.nav.scrolled .nav-links a::after {
    background: var(--amber);
}

.nav-links a:hover {
    color: var(--amber-glow);
}

.nav.scrolled .nav-links a:hover {
    color: var(--oak);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--oak) !important;
    color: var(--cream) !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out-expo) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--amber) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

.nav.scrolled .nav-hamburger span {
    background: var(--oak);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO (Home) — Split Layout
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--oak);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(243, 146, 0, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(20, 102, 46, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, #0D4A1F 0%, #14662E 30%, #1A7A3D 60%, #14662E 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.018;
    background-image:
        linear-gradient(30deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream)),
        linear-gradient(150deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream)),
        linear-gradient(30deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream)),
        linear-gradient(150deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream)),
        linear-gradient(60deg, rgba(250,246,241,0.06) 25%, transparent 25.5%, transparent 75%, rgba(250,246,241,0.06) 75%, rgba(250,246,241,0.06)),
        linear-gradient(60deg, rgba(250,246,241,0.06) 25%, transparent 25.5%, transparent 75%, rgba(250,246,241,0.06) 75%, rgba(250,246,241,0.06));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

.hero-diagonal {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-diagonal svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    width: 100%;
}

/* Hero split: text left, photo right */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(243, 146, 0, 0.15);
    border: 1px solid rgba(243, 146, 0, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-glow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-glow);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    color: var(--cream);
    line-height: 0.95;
    max-width: 800px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.hero h1 em {
    font-style: normal;
    color: var(--amber-glow);
}

.hero-h1-sub {
    display: block;
    font-size: 0.45em;
    color: var(--amber-glow);
    letter-spacing: 0.06em;
    margin-top: 0.15em;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--stone);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero photo placeholder (legacy) */
.hero-photo .photo-placeholder {
    aspect-ratio: 3/4;
    min-height: auto;
    border-radius: 16px;
    transform: rotate(2deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.08);
}

.hero-photo .photo-placeholder::after {
    width: 72px;
    height: 72px;
    opacity: 0.2;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    transform: rotate(2deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.08);
    overflow: hidden;
    background: var(--placeholder-bg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slideshow progress dots */
.hero-slideshow-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}

.hero-slideshow-dot.active {
    background: var(--amber);
    width: 24px;
    border-radius: 4px;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--amber);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 146, 0, 0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--stone);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.btn-secondary:hover { color: var(--amber-glow); }

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* ─── Hero Stats ─── */
.hero-stats {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 197, 178, 0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 700px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--amber-glow);
    margin-bottom: 0.25rem;
    letter-spacing: 0.03em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--stone);
    font-weight: 400;
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   PAGE HERO (Subpages) — Photo BG
   ═══════════════════════════════════════ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--placeholder-bg) 0%, var(--placeholder-bg2) 100%);
}

/* Dark overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,74,31,0.85) 0%, rgba(26,122,61,0.75) 100%);
    z-index: 1;
}

/* Subtle diagonal lines pattern */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    z-index: 1;
    background-image:
        linear-gradient(30deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream)),
        linear-gradient(150deg, var(--cream) 12%, transparent 12.5%, transparent 87%, var(--cream) 87.5%, var(--cream));
    background-size: 80px 140px;
}

.page-hero .hero-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: auto;
    border-radius: 0;
}

.page-hero-bg.has-image {
    background: none;
}

/* When page-hero has a real image background */
.page-hero.has-image {
    background-size: cover;
    background-position: center;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: auto;
    border-radius: 0;
}

.cta-banner-bg.has-image {
    background: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--stone-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.page-hero .section-label {
    color: var(--amber-glow);
    justify-content: center;
}

.page-hero .section-label::before {
    background: var(--amber-glow);
}

/* ═══════════════════════════════════════
   SECTION STYLES (shared)
   ═══════════════════════════════════════ */
.section {
    padding: 7rem 2rem;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--amber);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--oak);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
}

/* ═══════════════════════════════════════
   SERVICES (Home) — 4 columns
   ═══════════════════════════════════════ */
.services {
    background: var(--cream);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(212, 197, 178, 0.4);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--oak));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--oak), var(--oak-light));
}

.service-card:hover .service-icon svg {
    stroke: var(--cream);
}

.service-card:hover h3 {
    color: var(--amber);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cream-warm), var(--stone-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s var(--ease-out-expo);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--oak);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--oak);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: color 0.4s var(--ease-out-expo);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.65;
    font-weight: 300;
}

/* Service card as link */
a.service-card {
    display: block;
    color: inherit;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL (Subpages) — Text + Photo
   ═══════════════════════════════════════ */
.service-detail {
    background: var(--white);
}

.service-detail:nth-child(even) {
    background: var(--cream);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Alternate photo side on even sections */
.service-detail:nth-child(even) .service-detail-photo {
    order: -1;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--oak);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Photo placeholder in service detail */
.service-detail-photo .photo-placeholder {
    aspect-ratio: 4/3;
    min-height: auto;
    border-radius: 12px;
}

/* Features row — 3 columns below text+photo */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--stone-light);
}

.service-detail:nth-child(even) .features-row {
    border-top-color: rgba(26, 122, 61, 0.08);
}

.feature-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-card .service-icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
}

.feature-card .service-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--oak);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.6;
    font-weight: 300;
}

/* Legacy service-features (keeping for backward compat) */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-feature h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--oak);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.service-feature p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    background: var(--oak);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(243, 146, 0, 0.08) 0%, transparent 70%),
        linear-gradient(160deg, #0D4A1F 0%, #14662E 50%, #1A7A3D 100%);
}

.cta-banner .section-inner {
    position: relative;
    z-index: 1;
}

.cta-banner .section-title {
    color: var(--cream);
}

/* ═══════════════════════════════════════
   REALISATIONS
   ═══════════════════════════════════════ */
.realisations {
    background: var(--white);
}

.realisations-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.real-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: linear-gradient(145deg, var(--placeholder-bg) 0%, var(--placeholder-bg2) 100%);
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.real-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-out-expo);
    /* Remove the old gradient backgrounds since we now use photo placeholders */
}

/* Placeholder icon in realisation cards */
.real-card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.real-card-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 40px;
    height: 40px;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23748C74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.real-card-bg.has-image::before,
.real-card-bg.has-image::after {
    display: none;
}

.real-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.real-card:hover .real-card-bg {
    transform: scale(1.1);
}

.real-card:hover .real-card-content {
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.25) 50%, transparent 70%);
}

.real-card:hover .real-card-type {
    color: var(--white);
    background: var(--amber);
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    display: inline-block;
}

.real-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.real-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.15) 40%, transparent 60%);
    z-index: 2;
    transition: background 0.5s var(--ease-out-expo);
}

.real-card-type {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-glow);
    margin-bottom: 0.4rem;
    transition: all 0.4s var(--ease-out-expo);
}

.real-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.real-card-loc {
    font-size: 0.8rem;
    color: rgba(250, 246, 241, 0.65);
    font-weight: 300;
}

/* ═══════════════════════════════════════
   A PROPOS
   ═══════════════════════════════════════ */
.about {
    background: var(--oak);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,146,0,0.08) 0%, transparent 70%);
}

.about .section-label { color: var(--amber-glow); }
.about .section-label::before { background: var(--amber-glow); }
.about .section-title { color: var(--cream); }
.about .section-desc { color: var(--stone); }

/* About intro — centered top */
.about-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.about-intro .section-label {
    justify-content: center;
}

.about-intro .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* Values — 3 columns */
.about-values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.about-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(243, 146, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber-glow);
    fill: none;
    stroke-width: 1.5;
}

.about-value h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--cream);
}

.about-value p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.6;
    font-weight: 300;
}

/* Photo pleine largeur */
.about-photo-wide {
    margin-bottom: 4rem;
}

.about-photo-wide .photo-placeholder {
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-photo-wide .photo-placeholder::before {
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 14px,
        rgba(255,255,255,0.02) 14px,
        rgba(255,255,255,0.02) 15px
    );
}

.about-photo-wide .photo-placeholder::after {
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0C4B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
}

/* Founders — side by side */
.founders-section {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.founder-card {
    background: rgba(255, 253, 249, 0.04);
    border: 1px solid rgba(212, 197, 178, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all 0.5s var(--ease-out-expo);
}

.founder-card:hover {
    background: rgba(255, 253, 249, 0.08);
    border-color: rgba(243, 146, 0, 0.25);
    transform: translateY(-4px);
}

/* Founder photo placeholder */
.founder-photo {
    width: 120px;
    height: 120px;
}

.founder-photo .photo-placeholder {
    width: 120px;
    height: 120px;
    min-height: auto;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px solid rgba(255,255,255,0.08);
}

.founder-photo .photo-placeholder::before,
.founder-photo .photo-placeholder::after {
    display: none;
}

.founder-avatar-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    z-index: 2;
    border-radius: 50%;
}

.founder-avatar-fallback.fd1 { background: linear-gradient(135deg, var(--forest), var(--oak)); }
.founder-avatar-fallback.fd2 { background: linear-gradient(135deg, var(--amber), #E8860A); }

.founder-info h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
}

.founder-info .role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-glow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.founder-info p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.65;
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   TEMOIGNAGES
   ═══════════════════════════════════════ */
.testimonials {
    background: var(--cream);
}

/* Legacy grid fallback */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

/* Marquee scroll */
.testimonials-marquee {
    margin-top: 3.5rem;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-marquee .test-card {
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.test-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 197, 178, 0.3);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.test-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
}

.test-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--amber);
}

.test-card blockquote {
    font-size: 0.92rem;
    color: var(--slate-dark);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--stone-light);
}

.test-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white);
}

.test-avatar.t1 { background: linear-gradient(135deg, #14662E, #1A7A3D); }
.test-avatar.t2 { background: linear-gradient(135deg, #F39200, #E8860A); }
.test-avatar.t3 { background: linear-gradient(135deg, #1A7A3D, #228B4A); }

.test-author-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--oak);
}

.test-author-info span {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 300;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
    background: var(--white);
}

.faq-grid {
    margin-top: 3.5rem;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--stone-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--oak);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--slate);
    fill: none;
    stroke-width: 2;
    transition: transform 0.4s var(--ease-out-expo), stroke 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--amber);
}

.faq-item.active .faq-question {
    color: var(--oak);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.75;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--oak);
    letter-spacing: 0.02em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--oak);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--stone-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--oak);
    box-shadow: 0 0 0 3px rgba(26, 122, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
}

/* Contact info side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream-warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail h4 {
    font-size: 0.9rem;
    color: var(--oak);
    margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.85rem;
    color: var(--slate);
    font-weight: 300;
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--amber);
}

.contact-zone {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--stone-light);
    margin-top: 0.5rem;
}

.contact-zone h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--oak);
    margin-bottom: 0.5rem;
}

.contact-zone p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
    font-weight: 300;
}

.contact-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.contact-zone-tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--oak-light);
    background: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--stone-light);
}

/* Contact photo placeholder */
.contact-photo {
    margin-top: 1.5rem;
}

.contact-photo .photo-placeholder {
    aspect-ratio: 16/9;
    min-height: auto;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--charcoal);
    color: var(--stone);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 197, 178, 0.1);
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 6px 14px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--stone);
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--amber-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: rgba(212, 197, 178, 0.5);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(212, 197, 178, 0.5);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--amber-glow);
}

/* ═══════════════════════════════════════
   FORM SUCCESS STATE
   ═══════════════════════════════════════ */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 56px;
    height: 56px;
    stroke: var(--forest);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1.25rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--oak);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--slate);
    font-weight: 300;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-photo .photo-placeholder {
        transform: none;
        aspect-ratio: 16/9;
    }

    .hero-slideshow {
        transform: none;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 1024px) {
    .realisations-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail:nth-child(even) .service-detail-photo {
        order: 0;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .trust-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(255, 253, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out-expo);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta {
        font-size: 1rem !important;
        padding: 0.85rem 2rem !important;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-marquee .test-card {
        min-width: 300px;
        max-width: 300px;
    }

    .realisations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .realisations-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-bar {
        padding: 1.5rem 1.25rem;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .photo-break {
        height: 260px;
    }

    /* Show mobile CTA bar */
    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 5rem 1.25rem;
    }

    .hero-content {
        padding: 7rem 1.25rem 4rem;
    }

    .page-hero-content {
        padding: 7rem 1.25rem 3rem;
    }

    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .photo-break {
        height: 200px;
    }

    .trust-item {
        width: 100%;
    }
}
