/* ==========================================================================
   Nature Elagage — Design system premium
   Palette : Blanc / Vert vif + touches vert fonce (identite naturelle)
   Police  : Inter (Google Fonts)
   ========================================================================== */

:root{
  --black:#050d1c;
  --ink:#0a1730;
  --ink-2:#0f2140;
  --ink-3:#152c52;
  --gray-800:#33393f;
  --gray-500:#74798a;
  --gray-300:#b9bfca;
  --gray-100:#ecedef;
  --white:#ffffff;
  --off-white:#f5f6f8;

  --orange:#c00f15;
  --orange-2:#e2373a;
  --orange-dark:#022356;
  --yellow:#eab308;

  --grad-orange: linear-gradient(120deg, var(--orange-2) 0%, var(--orange) 55%, #8a0c10 100%);
  --grad-dark: linear-gradient(180deg, rgba(5,13,28,0) 0%, rgba(5,13,28,.55) 55%, rgba(5,13,28,.94) 100%);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.16,.84,.32,1);
  --ease-soft: cubic-bezier(.22,1,.36,1);

  --shadow-1: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-2: 0 20px 60px rgba(0,0,0,.18);
  --shadow-glow: 0 0 0 1px rgba(244,113,31,.35), 0 8px 30px rgba(244,113,31,.35);

  --container: 1220px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--white);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }
section{ position:relative; }
::selection{ background:var(--orange); color:var(--white); }

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

@media (min-width:900px){ .container{ padding:0 40px; } }

/* Reveal-on-scroll utility */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease-soft), transform .9s var(--ease-soft); will-change:transform,opacity; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }
.reveal-delay-4{ transition-delay:.32s; }
.reveal-delay-5{ transition-delay:.4s; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--orange); margin-bottom:16px;
}
.eyebrow::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--grad-orange);
  box-shadow:0 0 0 4px rgba(244,113,31,.15);
}

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size:clamp(28px,4.4vw,44px); font-weight:800; line-height:1.12; letter-spacing:-.02em;
}
.section-head p{ margin-top:16px; font-size:17px; line-height:1.65; color:var(--gray-500); }

.section-pad{ padding:96px 0; }
@media (min-width:900px){ .section-pad{ padding:132px 0; } }

/* ---------- Buttons ---------- */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:999px; font-weight:700; font-size:15px; letter-spacing:.01em;
  isolation:isolate; overflow:hidden; transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease);
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }

.btn-primary{
  color:var(--black); background:var(--grad-orange);
  box-shadow:0 10px 30px rgba(244,113,31,.35);
}
.btn-primary::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 45%, transparent 70%);
  transform:translateX(-120%);
  transition:transform .9s var(--ease-soft);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(244,113,31,.48); }
.btn-primary:hover::before{ transform:translateX(120%); }

.btn-ghost{
  color:var(--white); background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(6px);
}
.btn-ghost:hover{ background:rgba(255,255,255,.14); transform:translateY(-3px); border-color:rgba(255,255,255,.5); }

.btn-dark{
  color:var(--white); background:var(--ink);
  box-shadow:0 10px 26px rgba(0,0,0,.2);
}
.btn-dark:hover{ background:var(--black); transform:translateY(-3px); box-shadow:0 16px 36px rgba(0,0,0,.3); }

.btn-block{ width:100%; }
.btn small{ font-weight:600; opacity:.8; }

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled{
  background:rgba(10,10,11,.72); backdrop-filter:blur(16px) saturate(140%);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
  padding:12px 0;
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-logo{
  width:44px; height:44px; border-radius:12px; background:var(--white);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  flex:none;
}
.nav-logo img{ width:100%; height:100%; object-fit:contain; padding:3px; }
.nav-brand strong{ color:var(--white); font-size:15px; font-weight:800; letter-spacing:-.01em; line-height:1.15; }
.nav-brand span{ display:block; color:var(--gray-300); font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }

.nav-links{ display:none; align-items:center; gap:34px; }
.nav-links a{
  color:var(--gray-100); font-size:14.5px; font-weight:600; position:relative; padding:6px 0; opacity:.86;
  transition:opacity .3s var(--ease), color .3s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--grad-orange);
  transition:width .35s var(--ease);
}
.nav-links a:hover{ opacity:1; }
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:none; align-items:center; gap:14px; }
.nav-phone{ color:var(--white); font-weight:700; font-size:14.5px; display:flex; align-items:center; gap:8px; opacity:.92; }
.nav-phone svg{ width:16px; height:16px; }

@media (min-width:960px){
  .nav-links{ display:flex; }
  .nav-cta{ display:flex; }
}

.nav-burger{
  display:flex; flex-direction:column; gap:5px; width:26px; padding:6px; z-index:120;
}
.nav-burger span{ height:2px; width:100%; background:var(--white); border-radius:2px; transition:transform .35s var(--ease), opacity .35s var(--ease); }
.nav-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity:0; }
.nav-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (min-width:960px){ .nav-burger{ display:none; } }

.mobile-menu{
  position:fixed; inset:0; z-index:110; background:rgba(10,10,11,.98); backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .4s var(--ease-soft), transform .4s var(--ease-soft), visibility 0s linear .4s;
}
.mobile-menu.is-open{ opacity:1; visibility:visible; transform:translateY(0); transition:opacity .4s var(--ease-soft), transform .4s var(--ease-soft); }
.mobile-menu a{ color:var(--white); font-size:24px; font-weight:700; }
.mobile-menu .btn{ margin-top:12px; }

/* ---------- Hero ---------- */
.hero{
  min-height:100svh; display:flex; align-items:flex-end; position:relative; overflow:hidden;
  background:var(--black);
}
.hero-media{ position:absolute; inset:0; overflow:hidden; }
.hero-media video, .hero-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.06);
}
.hero-media img{ opacity:0; transition:opacity 1.6s ease; z-index:0; }
.hero-media img.is-active{ opacity:1; z-index:1; }
.hero-media::after{ content:""; position:absolute; inset:0; background:var(--grad-dark); }
.hero-media::before{
  content:""; position:absolute; inset:0; z-index:2;
  background:radial-gradient(120% 90% at 50% 100%, rgba(244,113,31,.22), transparent 60%);
  mix-blend-mode:screen;
}
.hero-content{
  position:relative; z-index:5; width:100%;
  padding:180px 0 96px;
  color:var(--white);
}
.hero-title{
  font-size:clamp(38px,7.4vw,86px); font-weight:800; letter-spacing:-.03em; line-height:1.02;
  max-width:16ch;
}
.hero-title .line{ display:block; overflow:hidden; }
.hero-title .line span{
  display:inline-block; transform:translateY(110%) rotate(2deg); filter:blur(14px); opacity:0;
  transition:transform 1.1s var(--ease-soft), filter 1.1s var(--ease-soft), opacity 1.1s var(--ease-soft);
}
.hero.is-ready .hero-title .line:nth-child(1) span{ transition-delay:.15s; }
.hero.is-ready .hero-title .line:nth-child(2) span{ transition-delay:.3s; }
.hero.is-ready .hero-title .line span{ transform:translateY(0) rotate(0); filter:blur(0); opacity:1; }

.hero-title .accent{ background:var(--grad-orange); -webkit-background-clip:text; background-clip:text; color:transparent; }

.hero-subtitle{
  margin-top:26px; font-size:clamp(16px,2vw,20px); color:var(--gray-100); max-width:46ch; line-height:1.6; font-weight:400;
  opacity:0; transform:translateY(16px); filter:blur(6px);
  transition:opacity 1s var(--ease-soft) .55s, transform 1s var(--ease-soft) .55s, filter 1s var(--ease-soft) .55s;
}
.hero.is-ready .hero-subtitle{ opacity:1; transform:translateY(0); filter:blur(0); }

.hero-actions{
  display:flex; flex-wrap:wrap; gap:16px; margin-top:40px;
  opacity:0; transform:translateY(16px);
  transition:opacity 1s var(--ease-soft) .75s, transform 1s var(--ease-soft) .75s;
}
.hero.is-ready .hero-actions{ opacity:1; transform:translateY(0); }

.hero-scroll{
  position:absolute; left:50%; bottom:28px; transform:translateX(-50%); z-index:5;
  display:flex; flex-direction:column; align-items:center; gap:10px; color:rgba(255,255,255,.75);
  font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  opacity:0; transition:opacity 1s var(--ease-soft) 1.2s;
}
.hero.is-ready .hero-scroll{ opacity:1; }
.hero-scroll .stick{ width:1px; height:36px; background:linear-gradient(var(--orange), transparent); position:relative; overflow:hidden; }
.hero-scroll .stick::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--white);
  animation:scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* ---------- Brand banner ---------- */
.brandband{ background:var(--black); overflow:hidden; }
.brandband img{ width:100%; max-height:340px; object-fit:cover; display:block; }

/* ---------- Trust bar ---------- */
.trustbar{ background:var(--ink); color:var(--white); padding:26px 0; }
.trustbar .container{
  display:grid; grid-template-columns:repeat(2,1fr); gap:22px 18px; text-align:left;
}
@media (min-width:760px){ .trustbar .container{ grid-template-columns:repeat(5,1fr); text-align:center; } }
.trust-item{ display:flex; flex-direction:row; align-items:center; gap:10px; justify-content:flex-start; }
@media (min-width:760px){ .trust-item{ flex-direction:column; justify-content:center; } }
.trust-item svg{ width:22px; height:22px; color:var(--orange); flex:none; }
.trust-item strong{ display:block; font-size:14.5px; font-weight:700; line-height:1.3; }
.trust-item span{ display:block; font-size:12px; color:var(--gray-300); font-weight:500; }

/* ---------- Services ---------- */
.services{ background:var(--off-white); }
.service-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1020px){ .service-grid{ grid-template-columns:repeat(3,1fr); } }

.service-card{
  position:relative; padding:34px 28px; border-radius:var(--radius-md); background:var(--white);
  box-shadow:var(--shadow-1); border:1px solid rgba(0,0,0,.04);
  transition:transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .4s;
  overflow:hidden;
}
.service-card::before{
  content:""; position:absolute; inset:0; opacity:0; background:var(--grad-orange);
  transition:opacity .5s var(--ease-soft);
}
.service-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-2); border-color:transparent; }
.service-card:hover::before{ opacity:.06; }
.service-icon{
  width:56px; height:56px; border-radius:16px; background:var(--ink); color:var(--white);
  display:flex; align-items:center; justify-content:center; margin-bottom:22px; position:relative; z-index:1;
  transition:background .5s var(--ease-soft), transform .5s var(--ease-soft);
}
.service-card:hover .service-icon{ background:var(--grad-orange); color:var(--black); transform:rotate(-6deg) scale(1.06); }
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ position:relative; z-index:1; font-size:19px; font-weight:700; margin-bottom:10px; letter-spacing:-.01em; }
.service-card p{ position:relative; z-index:1; font-size:14.5px; color:var(--gray-500); line-height:1.6; }

/* ---------- Realisations : bento gallery ---------- */
.gallery{ background:var(--white); }
.bento{
  display:grid; grid-template-columns:1fr; gap:16px;
}
@media (min-width:640px){ .bento{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .bento{ grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; } }

.bento-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-1);
  aspect-ratio:4/3;
}
@media (min-width:980px){ .bento-card{ aspect-ratio:auto; } }
.bento-lg{ }
@media (min-width:640px){ .bento-lg{ grid-column:span 2; } }
@media (min-width:980px){ .bento-lg{ grid-column:span 2; grid-row:span 2; } }

.bento-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .8s var(--ease-soft);
}
.bento-card:hover img{ transform:scale(1.08); }
.bento-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8) 100%);
  opacity:.75; transition:opacity .5s var(--ease-soft);
}
.bento-card:hover::after{ opacity:.92; }
.bento-cap{
  position:absolute; left:18px; right:18px; bottom:16px; z-index:2; color:var(--white);
  font-weight:700; font-size:14.5px; letter-spacing:-.01em;
  transform:translateY(6px); transition:transform .5s var(--ease-soft);
}
.bento-lg .bento-cap{ font-size:18px; }
.bento-card:hover .bento-cap{ transform:translateY(0); }

/* ---------- Expertise timeline ---------- */
.expertise{ background:var(--ink); color:var(--white); }
.timeline{ position:relative; margin-top:20px; }
.timeline::before{
  content:""; position:absolute; left:23px; top:0; bottom:0; width:2px;
  background:linear-gradient(var(--orange), rgba(255,255,255,.08));
}
@media (min-width:860px){ .timeline::before{ left:50%; transform:translateX(-50%); } }

.tl-step{ position:relative; padding:0 0 52px 68px; }
.tl-step:last-child{ padding-bottom:0; }
@media (min-width:860px){
  .tl-step{ padding-left:0; width:50%; }
  .tl-step:nth-child(odd){ margin-right:auto; padding-right:64px; text-align:right; }
  .tl-step:nth-child(even){ margin-left:auto; padding-left:64px; }
}
.tl-dot{
  position:absolute; left:0; top:0; width:48px; height:48px; border-radius:50%;
  background:var(--ink-2); border:1px solid rgba(255,255,255,.12); color:var(--orange);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px;
}
@media (min-width:860px){
  .tl-dot{ left:auto; }
  .tl-step:nth-child(odd) .tl-dot{ right:-24px; }
  .tl-step:nth-child(even) .tl-dot{ left:-24px; }
}
.tl-step h4{ font-size:19px; font-weight:700; margin-bottom:8px; }
.tl-step p{ color:var(--gray-300); font-size:14.5px; line-height:1.7; max-width:44ch; }
@media (min-width:860px){ .tl-step:nth-child(odd) p{ margin-left:auto; } }

/* ---------- Stats ---------- */
.stats{ background:var(--white); }
.stats-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; text-align:center; }
@media (min-width:760px){ .stats-grid{ grid-template-columns:repeat(5,1fr); } }
.stat-num{
  font-size:clamp(34px,4.6vw,52px); font-weight:800; letter-spacing:-.02em;
  background:var(--grad-orange); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.stat-label{ margin-top:8px; font-size:13.5px; color:var(--gray-500); font-weight:600; line-height:1.5; }

/* ---------- Zone ---------- */
.zone{ background:var(--off-white); }
.zone-wrap{ display:grid; gap:44px; }
@media (min-width:960px){ .zone-wrap{ grid-template-columns:1fr 1fr; align-items:center; } }
.zone-map{
  position:relative; aspect-ratio:1/1; max-width:440px; margin:0 auto; border-radius:50%;
  background:radial-gradient(circle at center, var(--ink) 0%, var(--ink-2) 45%, var(--ink) 100%);
  display:flex; align-items:center; justify-content:center;
}
.zone-ring{ position:absolute; border:1px solid rgba(255,255,255,.12); border-radius:50%; }
.zone-ring.r1{ inset:14%; }
.zone-ring.r2{ inset:30%; }
.zone-ring.r3{ inset:46%; }
.zone-center{
  position:relative; z-index:2; width:118px; height:118px; border-radius:50%; background:var(--grad-orange);
  display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--black);
  font-weight:800; text-align:center; box-shadow:0 0 0 10px rgba(244,113,31,.14), 0 20px 50px rgba(244,113,31,.4);
}
.zone-center span{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; opacity:.75; }
.zone-center strong{ font-size:17px; }
.zone-pin{
  position:absolute; width:10px; height:10px; border-radius:50%; background:var(--white);
  box-shadow:0 0 0 4px rgba(255,255,255,.15); animation:pinpulse 2.6s ease-in-out infinite;
}
@keyframes pinpulse{ 0%,100%{ box-shadow:0 0 0 4px rgba(255,255,255,.15); } 50%{ box-shadow:0 0 0 8px rgba(255,138,61,.25); } }

.zone-cities{ display:flex; flex-direction:column; gap:26px; max-height:640px; overflow-y:auto; padding-right:6px; }
.zone-group h4{
  font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; color:var(--orange-dark);
  margin-bottom:12px;
}
.zone-chips{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
@media (min-width:480px){ .zone-chips{ grid-template-columns:repeat(3,1fr); } }
.zone-chip{
  padding:12px 14px; border-radius:var(--radius-sm); background:var(--white); box-shadow:var(--shadow-1);
  font-size:13.5px; font-weight:700; display:flex; align-items:center; gap:9px;
  transition:transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.zone-chip:hover{ transform:translateY(-4px); box-shadow:var(--shadow-2); }
.zone-chip svg{ width:14px; height:14px; color:var(--orange); flex:none; }

/* ---------- Testimonials ---------- */
.testi{ background:var(--white); overflow:hidden; }
.testi-track-wrap{ position:relative; }
.testi-track{ display:flex; gap:24px; transition:transform .7s var(--ease-soft); }
.testi-card{
  flex:0 0 100%; max-width:100%; background:var(--off-white); border-radius:var(--radius-md);
  padding:36px 30px; box-shadow:var(--shadow-1);
}
@media (min-width:720px){ .testi-card{ flex:0 0 calc(50% - 12px); max-width:calc(50% - 12px); } }
@media (min-width:1060px){ .testi-card{ flex:0 0 calc(33.333% - 16px); max-width:calc(33.333% - 16px); } }
.testi-stars{ display:flex; gap:4px; color:var(--yellow); margin-bottom:18px; }
.testi-stars svg{ width:16px; height:16px; }
.testi-text{ font-size:15px; line-height:1.7; color:var(--ink-2); min-height:96px; }
.testi-foot{ display:flex; align-items:center; gap:12px; margin-top:24px; }
.testi-avatar{
  width:46px; height:46px; border-radius:50%; background:var(--grad-orange); color:var(--black);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; flex:none;
}
.testi-name{ font-size:14.5px; font-weight:700; }
.testi-loc{ font-size:12.5px; color:var(--gray-500); }
.testi-controls{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:38px; }
.testi-dot{ width:8px; height:8px; border-radius:50%; background:var(--gray-100); transition:background .35s, transform .35s; }
.testi-dot.is-active{ background:var(--grad-orange); transform:scale(1.3); }
.testi-arrow{
  width:46px; height:46px; border-radius:50%; background:var(--ink); color:var(--white);
  display:flex; align-items:center; justify-content:center; transition:transform .35s var(--ease), background .35s;
}
.testi-arrow svg{ width:18px; height:18px; }
.testi-arrow:hover{ background:var(--orange); color:var(--black); transform:scale(1.08); }

/* ---------- CTA final ---------- */
.cta-final{ position:relative; color:var(--white); overflow:hidden; }
.cta-media{ position:absolute; inset:0; }
.cta-media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); }
.cta-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.82) 60%, rgba(10,10,11,.96) 100%);
}
.cta-inner{ position:relative; z-index:2; text-align:center; padding:120px 0; }
.cta-inner h2{ font-size:clamp(30px,5.4vw,52px); font-weight:800; letter-spacing:-.02em; max-width:18ch; margin:0 auto; line-height:1.15; }
.cta-inner p{ margin-top:20px; color:var(--gray-100); font-size:17px; max-width:48ch; margin-left:auto; margin-right:auto; }
.cta-phone{
  display:inline-flex; align-items:center; gap:14px; margin:36px 0; font-weight:800;
  font-size:clamp(30px,6vw,54px); letter-spacing:-.02em;
}
.cta-phone svg{ width:.8em; height:.8em; color:var(--orange); }
.cta-actions{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }

/* ---------- Footer ---------- */
footer{ background:var(--black); color:var(--gray-300); padding:76px 0 28px; position:relative; overflow:hidden; }
footer .container{ position:relative; z-index:1; }
.roof-decor{ position:absolute; pointer-events:none; z-index:0; opacity:.06; stroke:var(--orange-2); stroke-width:1.5; fill:none; }
.roof-1{ width:340px; top:-60px; left:-60px; transform:rotate(-8deg); }
.roof-2{ width:260px; bottom:-70px; right:-40px; transform:rotate(6deg); opacity:.05; }
.footer-grid{ display:grid; gap:44px; grid-template-columns:1fr; }
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand .nav-logo{ box-shadow:none; }
.footer-brand strong{ color:var(--white); font-size:16px; font-weight:800; }
footer p{ font-size:14px; line-height:1.7; max-width:38ch; }
footer h5{ color:var(--white); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
footer ul li{ margin-bottom:11px; font-size:14px; }
footer ul li a{ transition:color .3s; }
footer ul li a:hover{ color:var(--orange); }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background:var(--ink-2); display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .3s;
}
.footer-social a:hover{ background:var(--grad-orange); color:var(--black); transform:translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
  margin-top:60px; padding-top:26px; border-top:1px solid rgba(255,255,255,.08);
  display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; font-size:12.5px; color:var(--gray-500);
}
.footer-bottom a:hover{ color:var(--orange); }

/* ---------- Floating call button (mobile) ---------- */
.fab-call{
  position:fixed; right:18px; bottom:18px; z-index:90; width:58px; height:58px; border-radius:50%;
  background:var(--grad-orange); color:var(--black); display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px rgba(244,113,31,.5); animation:fabpulse 2.8s ease-in-out infinite;
}
.fab-call svg{ width:24px; height:24px; }
@keyframes fabpulse{ 0%,100%{ box-shadow:0 12px 30px rgba(244,113,31,.5); } 50%{ box-shadow:0 12px 30px rgba(244,113,31,.15); } }
@media (min-width:960px){ .fab-call{ display:none; } }

/* Scroll progress bar */
.progress-bar{ position:fixed; top:0; left:0; height:3px; background:var(--grad-orange); z-index:200; width:0%; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
