/*
Theme Name: MSC Rénovation
Theme URI: https://msc-renovation.fr
Author: Webdevo
Author URI: https://webdevo.fr
Description: Thème custom pour MSC Rénovation — Maître d'œuvre d'exécution à Bordeaux. Design vert forêt + doré, orienté conversion et SEO local.
Version: 1.0.0
License: Proprietary
Text Domain: msc-renovation
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --forest: #1A3D2E;
  --forest-light: #224E3B;
  --forest-medium: #2A5E45;
  --forest-soft: #357553;
  --forest-pale: #E8F0EB;
  --gold: #C4956A;
  --gold-light: #D4A97A;
  --gold-dark: #A67B52;
  --gold-pale: #F5EDE3;
  --cream: #FAF8F5;
  --cream-warm: #F5F0EA;
  --stone: #E8E2D9;
  --stone-dark: #D4CCC0;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --urgent: #B44D3B;
  --urgent-pale: #FDF0ED;
  --shadow-sm: 0 1px 3px rgba(26,61,46,0.06);
  --shadow-md: 0 4px 16px rgba(26,61,46,0.08);
  --shadow-lg: 0 8px 32px rgba(26,61,46,0.12);
  --shadow-xl: 0 16px 48px rgba(26,61,46,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--cream); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
.anim { opacity:0; transform:translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.visible { opacity:1; transform:translateY(0); }
.anim-d1 { transition-delay:0.1s; } .anim-d2 { transition-delay:0.2s; } .anim-d3 { transition-delay:0.3s; }

/* ═══ TOP BAR ═══ */
.top-bar { background: var(--forest); color: rgba(255,255,255,0.75); font-size: 0.8125rem; padding: 0.5rem 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.75); } .top-bar a:hover { color: var(--gold-light); }
.top-bar__contact { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__contact svg { width:14px; height:14px; vertical-align:-2px; margin-right:4px; fill:currentColor; opacity:0.6; }
.top-bar__social { display: flex; gap: 0.625rem; }
.top-bar__social a { width:28px; height:28px; display:flex; align-items:center; justify-content:center; border-radius:50%; border:1px solid rgba(255,255,255,0.15); }
.top-bar__social a:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
.top-bar__social svg { width:13px; height:13px; fill:currentColor; }

/* ═══ HEADER ═══ */
.header { background: var(--white); position: sticky; top:0; z-index:1000; box-shadow: var(--shadow-sm); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container { display:flex; justify-content:space-between; align-items:center; height:76px; }
.logo { display:flex; align-items:center; gap:0.75rem; }
.logo__mark { width:46px; height:46px; background:var(--forest); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; color:var(--gold); font-family:var(--font-display); font-weight:700; font-size:1.2rem; }
.logo__text { display:flex; flex-direction:column; line-height:1.2; }
.logo__name { font-family:var(--font-display); font-size:1.2rem; font-weight:600; color:var(--forest); }
.logo__tagline { font-size:0.6875rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.12em; font-weight:500; }
.nav { display:flex; align-items:center; }
.nav__link { padding:0.5rem 1.125rem; font-size:0.875rem; font-weight:500; color:var(--text-dark); position:relative; }
.nav__link::after { content:''; position:absolute; bottom:0; left:50%; width:0; height:2px; background:var(--gold); transition:var(--transition); transform:translateX(-50%); }
.nav__link:hover { color:var(--forest); } .nav__link:hover::after { width:55%; }
.nav__link--active { color:var(--forest); font-weight:600; } .nav__link--active::after { width:55%; }
.nav__cta { margin-left:1rem; padding:0.625rem 1.5rem; background:var(--forest); color:var(--white); border-radius:var(--radius-sm); font-size:0.8125rem; font-weight:600; letter-spacing:0.03em; text-transform:uppercase; display:inline-flex; align-items:center; gap:0.375rem; }
.nav__cta svg { width:14px; height:14px; fill:currentColor; flex-shrink:0; }
.nav__cta:hover { background:var(--gold); transform:translateY(-1px); box-shadow:var(--shadow-md); }

/* Mobile nav */
.nav-toggle { display:none; background:none; border:none; cursor:pointer; width:40px; height:40px; flex-direction:column; justify-content:center; align-items:center; gap:5px; z-index:1001; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--forest); transition:var(--transition); }
.nav-toggle.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display:none; position:fixed; inset:0; background:var(--white); z-index:999; padding:6rem 2rem 2rem; flex-direction:column; gap:0.25rem; }
.mobile-nav.open { display:flex; }
.mobile-nav a { padding:1rem 0; font-size:1.125rem; font-weight:500; color:var(--forest); border-bottom:1px solid var(--stone); }
.mobile-nav__cta { margin-top:1.5rem; padding:1rem; background:var(--forest); color:var(--white)!important; border-radius:var(--radius-md); text-align:center; font-weight:600; border:none!important; }

/* ═══ BUTTONS ═══ */
.btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.875rem 2rem; font-family:var(--font-body); font-size:0.875rem; font-weight:600; letter-spacing:0.03em; border-radius:var(--radius-sm); cursor:pointer; border:none; transition:var(--transition); white-space:nowrap; }
.btn svg { width:16px; height:16px; fill:currentColor; flex-shrink:0; }
.btn--gold { background:var(--gold); color:var(--white); }
.btn--gold:hover { background:var(--gold-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(196,149,106,0.3); }
.btn--forest { background:var(--forest); color:var(--white); }
.btn--forest:hover { background:var(--forest-light); transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn--outline-light { background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.2); }
.btn--outline-light:hover { border-color:var(--gold-light); color:var(--gold-light); }
.btn--outline-forest { background:transparent; color:var(--forest); border:1px solid var(--stone-dark); }
.btn--outline-forest:hover { border-color:var(--forest); }
.btn--white { background:var(--white); color:var(--forest); }
.btn--white:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn--glass { background:rgba(255,255,255,0.12); color:var(--white); border:1px solid rgba(255,255,255,0.25); }
.btn--glass:hover { background:rgba(255,255,255,0.2); }
.btn--urgent { background:var(--urgent); color:var(--white); }
.btn--urgent:hover { background:#9A3F2F; transform:translateY(-2px); box-shadow:0 8px 24px rgba(180,77,59,0.3); }

/* ═══ SECTIONS ═══ */
.section { padding:6rem 0; }
.section--cream { background:var(--cream); } .section--white { background:var(--white); }
.section--forest { background:var(--forest); color:var(--white); } .section--warm { background:var(--cream-warm); }
.section__label { display:inline-flex; align-items:center; gap:0.5rem; font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.12em; color:var(--gold); margin-bottom:0.875rem; }
.section__label::before { content:''; width:24px; height:1px; background:var(--gold); }
.section__title { font-family:var(--font-display); font-size:clamp(1.75rem,3vw,2.5rem); font-weight:600; color:var(--forest); line-height:1.2; margin-bottom:1rem; letter-spacing:-0.02em; }
.section--forest .section__title { color:var(--white); }
.section__subtitle { font-size:1.0625rem; color:var(--text-muted); max-width:620px; line-height:1.7; }
.section--forest .section__subtitle { color:rgba(255,255,255,0.55); }
.section__header { margin-bottom:3.5rem; } .section__header--center { text-align:center; }
.section__header--center .section__subtitle { margin:0 auto; }

/* ═══ HERO (homepage) ═══ */
.hero { position:relative; min-height:88vh; display:flex; align-items:center; background:var(--forest); overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 40%,rgba(196,149,106,0.07) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(53,117,83,0.1) 0%,transparent 50%); }
.hero__pattern { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.015) 1px,transparent 1px); background-size:80px 80px; }
.hero .container { position:relative; z-index:2; display:grid; grid-template-columns:1.1fr 0.9fr; gap:4rem; align-items:center; padding-top:3rem; padding-bottom:3rem; }
.hero__content { animation:slideRight 1s ease forwards; }
.hero__badge { display:inline-flex; align-items:center; gap:0.5rem; padding:0.5rem 1.125rem; background:rgba(196,149,106,0.1); border:1px solid rgba(196,149,106,0.2); border-radius:100px; color:var(--gold-light); font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; margin-bottom:1.75rem; }
.hero__badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); }
.hero__title { font-family:var(--font-display); font-size:clamp(2.5rem,4.5vw,3.75rem); font-weight:600; color:var(--white); line-height:1.12; margin-bottom:1.5rem; letter-spacing:-0.02em; }
.hero__title em { font-style:italic; color:var(--gold-light); }
.hero__subtitle { font-size:1.0625rem; color:rgba(255,255,255,0.6); line-height:1.8; margin-bottom:2.5rem; max-width:520px; }
.hero__actions { display:flex; gap:1rem; flex-wrap:wrap; }
.hero__stats { display:flex; gap:2.5rem; margin-top:3rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,0.07); }
.hero__stat-number { font-family:var(--font-display); font-size:2rem; font-weight:600; color:var(--gold-light); line-height:1; }
.hero__stat-label { font-size:0.75rem; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:0.08em; margin-top:0.25rem; }
.hero__visual { position:relative; animation:fadeIn 1.2s ease 0.3s both; }
.hero__image-wrapper { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; max-height:560px; }
.hero__image-placeholder { width:100%; height:100%; background:linear-gradient(135deg,var(--forest-light) 0%,var(--forest-medium) 100%); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.25); font-size:0.875rem; text-align:center; padding:2rem; line-height:1.6; }
.hero__image-accent { position:absolute; bottom:-14px; right:-14px; width:110px; height:110px; border:2px solid var(--gold); border-radius:var(--radius-lg); opacity:0.25; }
.hero__floating-card { position:absolute; bottom:2rem; left:-2rem; background:var(--white); padding:1.125rem 1.375rem; border-radius:var(--radius-md); box-shadow:var(--shadow-xl); display:flex; align-items:center; gap:0.75rem; animation:fadeUp 1s ease 0.8s both; }
.hero__floating-avatar { width:72px; height:72px; border-radius:50%; overflow:hidden; flex-shrink:0; border:3px solid var(--gold); box-shadow:0 4px 12px rgba(26,61,46,0.15); }
.hero__floating-text { font-size:0.8125rem; font-weight:600; color:var(--text-dark); line-height:1.3; }
.hero__floating-sub { font-size:0.6875rem; color:var(--text-muted); font-weight:400; }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero { background:var(--forest); padding:5rem 0 4rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 40%,rgba(196,149,106,0.06) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(53,117,83,0.08) 0%,transparent 50%); }
.page-hero__pattern { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.015) 1px,transparent 1px); background-size:80px 80px; }
.page-hero .container { position:relative; z-index:2; max-width:800px; }
.page-hero__badge { display:inline-flex; align-items:center; gap:0.5rem; padding:0.5rem 1.125rem; background:rgba(196,149,106,0.1); border:1px solid rgba(196,149,106,0.2); border-radius:100px; color:var(--gold-light); font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; margin-bottom:1.5rem; }
.page-hero__badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); }
.page-hero__badge--urgent { background:rgba(180,77,59,0.12); border-color:rgba(180,77,59,0.25); color:#E8A090; }
.page-hero__badge--urgent::before { background:var(--urgent); }
.page-hero__title { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); font-weight:600; color:var(--white); line-height:1.15; margin-bottom:1.25rem; }
.page-hero__title em { font-style:italic; color:var(--gold-light); }
.page-hero__text { font-size:1.0625rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:600px; }
.page-hero__actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; }
.page-hero__breadcrumb { margin-top:2rem; font-size:0.8125rem; color:rgba(255,255,255,0.35); }
.page-hero__breadcrumb a { color:rgba(255,255,255,0.5); } .page-hero__breadcrumb a:hover { color:var(--gold-light); }
.page-hero__breadcrumb span { margin:0 0.375rem; }

/* ═══ ROLE / DIFF ═══ */
.role-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.role__text { font-size:1rem; line-height:1.8; color:var(--text-body); margin-bottom:2rem; }
.role__diffs { display:flex; flex-direction:column; gap:0.875rem; }
.role__diff { display:flex; align-items:flex-start; gap:1rem; padding:1rem 1.25rem; background:var(--white); border-radius:var(--radius-md); border-left:3px solid var(--gold); transition:var(--transition); }
.role__diff:hover { box-shadow:var(--shadow-md); transform:translateX(4px); }
.role__diff-icon { width:36px; height:36px; flex-shrink:0; background:var(--forest-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; }
.role__diff-icon svg { width:18px; height:18px; fill:var(--forest); }
.role__diff-label { font-weight:600; font-size:0.875rem; color:var(--forest); }
.role__diff-desc { font-size:0.8125rem; color:var(--text-muted); margin-top:0.125rem; }
.role__image-grid { display:grid; grid-template-columns:1fr 1fr; gap:0.875rem; }
.role__image-cell { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1; background:var(--stone); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.75rem; text-align:center; padding:0.75rem; position:relative; }
.role__image-cell:first-child { grid-row:span 2; aspect-ratio:auto; background:linear-gradient(135deg,var(--forest-pale) 0%,var(--stone) 100%); }
.role__image-cell img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.service-card { background:var(--white); border-radius:var(--radius-md); padding:2rem; border:1px solid var(--stone); transition:var(--transition); position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--forest),var(--gold)); transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.service-card:hover { border-color:transparent; box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.service-card:hover::before { transform:scaleX(1); }
.service-card__number { font-family:var(--font-display); font-size:2.5rem; font-weight:600; color:var(--stone); line-height:1; margin-bottom:0.875rem; }
.service-card__title { font-family:var(--font-display); font-size:1.1875rem; font-weight:600; color:var(--forest); margin-bottom:0.75rem; line-height:1.3; }
.service-card__text { font-size:0.875rem; color:var(--text-muted); line-height:1.7; margin-bottom:1.25rem; }
.service-card__link { font-size:0.8125rem; font-weight:600; color:var(--gold); display:inline-flex; align-items:center; gap:0.375rem; text-transform:uppercase; letter-spacing:0.06em; }
.service-card__link:hover { gap:0.625rem; color:var(--gold-dark); }
.service-card__link svg { width:14px; height:14px; fill:currentColor; transition:var(--transition); }

/* ═══ REALISATIONS ═══ */
.realisations-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0.875rem; }
.real-item { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:1; position:relative; cursor:pointer; background:var(--stone); }
.real-item:first-child { grid-column:span 2; grid-row:span 2; aspect-ratio:1; }
.real-item img { width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; transition:transform 0.5s ease; }
.real-item:hover img { transform:scale(1.05); }
.real-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,61,46,0.75) 0%,transparent 50%); opacity:0; transition:var(--transition); display:flex; align-items:flex-end; padding:1.25rem; z-index:2; }
.real-item:hover .real-overlay { opacity:1; }
.real-overlay span { color:var(--white); font-size:0.8125rem; font-weight:500; }

/* ═══ BEFORE/AFTER ═══ */
.before-after, .ba-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.ba-card { border-radius:var(--radius-md); overflow:hidden; position:relative; aspect-ratio:16/10; background:var(--stone); display:flex; align-items:center; justify-content:center; font-size:0.8rem; color:var(--text-muted); }
.ba-card img { width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; }
.ba-label { position:absolute; top:1rem; left:1rem; padding:0.375rem 0.875rem; border-radius:100px; font-size:0.6875rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; z-index:2; }
.ba-label--before { background:rgba(26,61,46,0.85); color:var(--white); }
.ba-label--after { background:var(--gold); color:var(--white); }

/* ═══ AVANTAGES ═══ */
.avantages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.avantage-card { padding:2rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-radius:var(--radius-md); transition:var(--transition); }
.avantage-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(196,149,106,0.2); transform:translateY(-2px); }
.avantage-icon { width:48px; height:48px; background:rgba(196,149,106,0.12); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.avantage-icon svg { width:22px; height:22px; fill:var(--gold-light); }
.avantage-title { font-family:var(--font-display); font-size:1.0625rem; font-weight:600; color:var(--white); margin-bottom:0.5rem; }
.avantage-text { font-size:0.875rem; color:rgba(255,255,255,0.5); line-height:1.7; }

/* ═══ EXPERTISE GRID ═══ */
.expertise-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.expertise-grid--reverse { direction:rtl; } .expertise-grid--reverse > * { direction:ltr; }
.expertise__text { font-size:1rem; color:var(--text-body); line-height:1.8; margin-bottom:1.5rem; }
.expertise__list { display:flex; flex-direction:column; gap:0.75rem; margin-bottom:1.5rem; }
.expertise__list-item { display:flex; align-items:flex-start; gap:0.75rem; font-size:0.9375rem; color:var(--text-body); }
.expertise__list-check { width:20px; height:20px; flex-shrink:0; background:var(--forest-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.expertise__list-check svg { width:12px; height:12px; fill:var(--forest); }
.expertise__list-check--urgent { background:var(--urgent-pale); }
.expertise__list-check--urgent svg { fill:var(--urgent); }
.expertise__visual { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; background:var(--stone); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.8rem; text-align:center; padding:1rem; position:relative; }
.expertise__visual img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }

/* ═══ STEPS ═══ */
.steps-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; counter-reset:step; }
.step-card { background:var(--white); border-radius:var(--radius-md); padding:2rem; border:1px solid var(--stone); position:relative; transition:var(--transition); counter-increment:step; }
.step-card:hover { border-color:transparent; box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.step-card__number { font-family:var(--font-display); font-size:2.5rem; font-weight:600; color:var(--stone); line-height:1; margin-bottom:0.75rem; }
.step-card__number::before { content:counter(step, decimal-leading-zero); }
.step-card__title { font-family:var(--font-display); font-size:1.125rem; font-weight:600; color:var(--forest); margin-bottom:0.75rem; line-height:1.3; }
.step-card__text { font-size:0.875rem; color:var(--text-muted); line-height:1.7; }

/* ═══ PROBLEM CARDS ═══ */
.problems-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.problem-card { background:var(--white); border-radius:var(--radius-md); padding:2rem; border:1px solid var(--stone); transition:var(--transition); position:relative; overflow:hidden; }
.problem-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--urgent); border-radius:var(--radius-md) var(--radius-md) 0 0; transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.problem-card:hover { border-color:transparent; box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.problem-card:hover::before { transform:scaleX(1); }
.problem-card__icon { width:48px; height:48px; background:var(--urgent-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.problem-card__icon svg { width:22px; height:22px; fill:var(--urgent); }
.problem-card__title { font-family:var(--font-display); font-size:1.125rem; font-weight:600; color:var(--forest); margin-bottom:0.75rem; line-height:1.3; }
.problem-card__text { font-size:0.875rem; color:var(--text-muted); line-height:1.7; }

/* ═══ PROCESS STEPS ═══ */
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; counter-reset:proc; }
.process-step { text-align:center; padding:2rem 1.25rem; counter-increment:proc; }
.process-step__number { width:52px; height:52px; margin:0 auto 1.25rem; background:rgba(196,149,106,0.12); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.25rem; font-weight:600; color:var(--gold-light); }
.process-step__number::before { content:counter(proc); }
.process-step__title { font-family:var(--font-display); font-size:1rem; font-weight:600; color:var(--white); margin-bottom:0.5rem; }
.process-step__text { font-size:0.8125rem; color:rgba(255,255,255,0.5); line-height:1.7; }

/* ═══ ZONES ═══ */
.zones-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.zone-card { padding:2rem; background:var(--white); border-radius:var(--radius-md); border:1px solid var(--stone); transition:var(--transition); }
.zone-card:hover { box-shadow:var(--shadow-md); border-color:var(--forest-soft); }
.zone-card__dot { width:10px; height:10px; border-radius:50%; background:var(--forest); margin-bottom:1rem; }
.zone-card__pin { width:40px; height:40px; background:var(--forest-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.zone-card__pin svg { width:22px; height:22px; fill:var(--forest); }
.zone-card__title { font-family:var(--font-display); font-size:1.0625rem; font-weight:600; color:var(--forest); margin-bottom:0.75rem; }
.zone-card__cities { font-size:0.8125rem; color:var(--text-muted); line-height:1.8; }
/* Zone cards on dark bg */
.section--forest .zone-card { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.06); }
.section--forest .zone-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(196,149,106,0.2); }
.section--forest .zone-card__title { color:var(--white); }
.section--forest .zone-card__cities { color:rgba(255,255,255,0.5); }
.section--forest .zone-card__dot { background:var(--gold-light); }

/* ═══ SHORTCODE SLOT ═══ */
.shortcode-slot { background:var(--cream-warm); border:2px dashed var(--stone-dark); border-radius:var(--radius-md); padding:3rem 2rem; text-align:center; color:var(--text-muted); font-size:0.875rem; }
.shortcode-slot__label { font-weight:600; color:var(--forest); font-size:1rem; margin-bottom:0.5rem; }
.shortcode-slot code { display:inline-block; background:var(--white); padding:0.25rem 0.75rem; border-radius:var(--radius-sm); font-family:'SF Mono',monospace; font-size:0.8125rem; color:var(--gold-dark); margin-top:0.5rem; }

/* ═══ CTA BAND ═══ */
.cta-band { background:var(--gold); padding:3.5rem 0; position:relative; overflow:hidden; }
.cta-band--urgent { background:var(--urgent); }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 15% 50%,rgba(255,255,255,0.08) 0%,transparent 50%),radial-gradient(circle at 85% 50%,rgba(0,0,0,0.05) 0%,transparent 50%); }
.cta-band .container { position:relative; display:flex; justify-content:space-between; align-items:center; gap:2rem; }
.cta-band__text { font-family:var(--font-display); font-size:clamp(1.25rem,2vw,1.5rem); font-weight:500; color:var(--white); line-height:1.4; }
.cta-band__actions { display:flex; gap:1rem; flex-shrink:0; }

/* ═══ FAQ ═══ */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--stone); }
.faq-question { display:flex; justify-content:space-between; align-items:center; padding:1.5rem 0; cursor:pointer; gap:1rem; user-select:none; }
.faq-question h3 { font-family:var(--font-display); font-size:1.0625rem; font-weight:600; color:var(--forest); line-height:1.4; margin:0; }
.faq-icon { width:28px; height:28px; flex-shrink:0; border-radius:50%; background:var(--forest-pale); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.faq-icon svg { width:14px; height:14px; fill:var(--forest); transition:var(--transition); }
.faq-item.open .faq-icon { background:var(--forest); } .faq-item.open .faq-icon svg { fill:var(--white); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height:500px; }
.faq-answer__inner { padding-bottom:1.5rem; font-size:0.9375rem; color:var(--text-body); line-height:1.8; }

/* ═══ CONTACT ═══ */
.contact-layout { display:grid; grid-template-columns:1.2fr 0.8fr; gap:4rem; align-items:start; }
.contact-card { background:var(--white); border-radius:var(--radius-md); border:1px solid var(--stone); padding:2rem; margin-bottom:1.5rem; }
.contact-card__title { font-family:var(--font-display); font-size:1.125rem; font-weight:600; color:var(--forest); margin-bottom:1.25rem; padding-bottom:0.75rem; border-bottom:1px solid var(--stone); }
.contact-card__item { display:flex; align-items:flex-start; gap:0.875rem; padding:0.875rem 0; }
.contact-card__item + .contact-card__item { border-top:1px solid var(--stone); }
.contact-card__icon { width:40px; height:40px; flex-shrink:0; background:var(--forest-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; }
.contact-card__icon svg { width:18px; height:18px; fill:var(--forest); }
.contact-card__label { font-size:0.6875rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); margin-bottom:0.125rem; }
.contact-card__value { font-size:0.9375rem; font-weight:500; color:var(--forest); }
.contact-card__value a { color:var(--forest); } .contact-card__value a:hover { color:var(--gold); }
.contact-cta-card { background:var(--forest); border-radius:var(--radius-md); padding:2rem; text-align:center; }
.contact-cta-card__title { font-family:var(--font-display); font-size:1.125rem; font-weight:600; color:var(--white); margin-bottom:0.5rem; }
.contact-cta-card__text { font-size:0.875rem; color:rgba(255,255,255,0.55); margin-bottom:1.25rem; line-height:1.6; }
.contact-cta-card .btn { width:100%; justify-content:center; }

/* ═══ ABOUT ═══ */
.about-grid { display:grid; grid-template-columns:0.4fr 1fr; gap:3rem; align-items:start; }
.about-photo { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:3/4; background:var(--stone); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.8rem; text-align:center; padding:1rem; position:relative; }
.about-photo img { width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; }
.about-content p { font-size:1rem; color:var(--text-body); line-height:1.8; margin-bottom:1.25rem; }
.about-quote { padding:1.5rem 2rem; background:var(--forest-pale); border-left:3px solid var(--gold); border-radius:0 var(--radius-md) var(--radius-md) 0; margin:1.5rem 0; }
.about-quote p { font-family:var(--font-display); font-style:italic; font-size:1rem; color:var(--forest); margin-bottom:0.5rem; }
.about-quote cite { font-style:normal; font-family:var(--font-body); font-size:0.8125rem; color:var(--text-muted); font-weight:500; }

/* ═══ FOOTER ═══ */
.footer { background:var(--forest); color:rgba(255,255,255,0.65); padding:4rem 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.07); }
.footer__brand-desc { font-size:0.875rem; line-height:1.8; color:rgba(255,255,255,0.45); margin-top:1rem; max-width:280px; }
.footer__title { font-family:var(--font-display); font-size:0.9375rem; font-weight:600; color:var(--white); margin-bottom:1.25rem; }
.footer__links { display:flex; flex-direction:column; gap:0.625rem; }
.footer__links a { font-size:0.875rem; color:rgba(255,255,255,0.45); } .footer__links a:hover { color:var(--gold-light); padding-left:4px; }
.footer__contact-item { display:flex; align-items:center; gap:0.75rem; margin-bottom:0.875rem; font-size:0.875rem; }
.footer__contact-icon { width:32px; height:32px; flex-shrink:0; background:rgba(255,255,255,0.06); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; }
.footer__contact-icon svg { width:14px; height:14px; fill:rgba(255,255,255,0.5); }
.footer__bottom { padding:1.5rem 0; display:flex; justify-content:space-between; align-items:center; font-size:0.8125rem; color:rgba(255,255,255,0.3); }
.footer__social { display:flex; gap:0.625rem; }
.footer__social a { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:var(--radius-sm); background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.45); }
.footer__social a:hover { background:var(--gold); color:var(--white); }
.footer__social svg { width:14px; height:14px; fill:currentColor; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
  .hero .container { grid-template-columns:1fr; gap:2rem; }
  .hero__visual { display:none; } .hero { min-height:65vh; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .avantages-grid { grid-template-columns:repeat(2,1fr); }
  .role-grid, .expertise-grid { grid-template-columns:1fr; gap:2rem; }
  .expertise-grid--reverse { direction:ltr; }
  .role__visual { order:-1; }
  .realisations-grid { grid-template-columns:repeat(3,1fr); }
  .realisations-grid .real-item:first-child { grid-column:span 1; grid-row:span 1; }
  .steps-grid { grid-template-columns:1fr; }
  .problems-grid { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .contact-layout { grid-template-columns:1fr; gap:2rem; }
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-photo { max-width:300px; }
  .zones-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .top-bar__contact { display:none; }
  .nav { display:none; } .nav-toggle { display:flex; }
  .section { padding:3.5rem 0; }
  .page-hero { padding:3.5rem 0 3rem; }
  .services-grid, .avantages-grid, .zones-grid, .problems-grid, .process-steps { grid-template-columns:1fr; }
  .realisations-grid { grid-template-columns:repeat(2,1fr); }
  .before-after, .ba-grid { grid-template-columns:1fr; }
  .cta-band .container { flex-direction:column; text-align:center; }
  .hero__stats { gap:1.5rem; flex-wrap:wrap; }
  .hero__actions, .page-hero__actions { justify-content:center; flex-direction:column; }
  .hero__content { text-align:center; }
  .hero__subtitle { margin-left:auto; margin-right:auto; }
  .hero__stats { justify-content:center; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer__bottom { flex-direction:column; gap:1rem; text-align:center; }
  .section__header { margin-bottom:2.5rem; }
}
@media (max-width:480px) {
  .container { padding:0 1.25rem; }
  .btn { width:100%; justify-content:center; }
  .cta-band__actions { flex-direction:column; width:100%; }
}
