/* =====================================================================
   Guevel TP — Front-End Stylesheet
   Colors: orange #f97316, dark navy #0f172a, slate #334155
   ===================================================================== */

:root {
  --orange:      #ffd32f; /*#f97316*/;
  --orange-dark: #ea580c;
  --orange-light:#fff7ed;
  --navy:        #271203;; /*#0f172a*/
  --navy-mid:    #1e293b;
  --slate:       #334155;
  --slate-light: #64748b;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --white:       #ffffff;
  --font:        'Barlow', 'Segoe UI', Arial, sans-serif;
  --font-display:'Barlow Condensed', 'Barlow', sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --transition:  .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--gray-200); }
.btn-secondary:hover { background: var(--gray-100); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--slate); border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); color: var(--navy); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.header-topbar { background: var(--orange); padding: 6px 0; }
.topbar-inner { display: flex; align-items: center; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.topbar-phone, .topbar-fb {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-phone:hover, .topbar-fb:hover { color: rgba(255,255,255,.85); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-text strong { color: var(--orange); }
.logo-sub { font-size: 11px; color: var(--slate-light); font-weight: 500; letter-spacing: .5px; }

.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.08); }
.main-nav a[aria-current="page"] { color: var(--orange); }
.main-nav li.active > a:not([aria-current="page"]) { color: var(--white); background: rgba(255,255,255,.08); }
.main-nav .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 20px;
}
.main-nav .nav-cta:hover { background: var(--orange-dark); }

/* ── Submenu dropdown ─────────────────────────────────────────────────────── */
.main-nav .has-submenu { position: relative; }
.main-nav .submenu-arrow { font-size: 10px; margin-left: 2px; display: inline-block; transition: transform .2s ease; vertical-align: middle; }
.main-nav .has-submenu:hover .submenu-arrow { transform: rotate(180deg); }

.main-nav .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  z-index: 500;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  list-style: none;
}
.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu.open .submenu { display: flex; }

.main-nav .submenu li { display: block; }
.main-nav .submenu a {
  display: block;
  padding: 9px 14px;
  white-space: nowrap;
  font-size: 13.5px;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-title { font-size: clamp(32px, 5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-item {
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 56px 0 48px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-light);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,.7); }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--white); }
.page-hero-sub { color: rgba(255,255,255,.7); margin-top: 8px; font-size: 16px; }
.page-hero-date { color: var(--orange); font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.section-header p { color: var(--slate-light); font-size: 16px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ── Services grid ───────────────────────────────────────────────────────── */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}
.service-card--highlight { background: var(--navy); border-color: var(--navy); }
.service-card--highlight h3 { color: var(--white); }
.service-card--highlight p { color: rgba(255,255,255,.7); }
.service-card--highlight .service-link { color: var(--orange); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card--highlight .service-icon { background: rgba(249,115,22,.15); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); }
.service-card p { color: var(--slate-light); font-size: 14px; flex: 1; }
.service-link { font-size: 13px; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 4px; }

/* ── Why us ──────────────────────────────────────────────────────────────── */
.why-section { padding: 80px 0; background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.why-content p { color: var(--slate); margin-bottom: 24px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: center; gap: 12px; color: var(--slate); font-weight: 500; }
.why-list svg { color: var(--orange); flex-shrink: 0; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--white); padding: 28px 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.stat-number { display: block; font-size: 36px; font-weight: 800; color: var(--orange); }
.stat-label { display: block; font-size: 13px; color: var(--slate-light); font-weight: 500; margin-top: 4px; }

/* ── Gallery preview ─────────────────────────────────────────────────────── */
.gallery-preview { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.gallery-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.gallery-thumb-overlay span { color: var(--white); font-size: 13px; font-weight: 600; }

/* ── Gallery section ─────────────────────────────────────────────────────── */
.gallery-section { padding: 60px 0; }
.gallery-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-cat-card { text-decoration: none; color: inherit; }
.gallery-cat-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gray-100);
  margin-bottom: 10px;
}
.gallery-cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-cat-card:hover .gallery-cat-thumb img { transform: scale(1.05); }
.gallery-cat-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--gray-200); }
.gallery-cat-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15,23,42,.75);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.gallery-cat-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.gallery-cat-card:hover .gallery-cat-name { color: var(--orange); }

/* ── Gallery detail ─────────────────────────────────────────────────────── */
.gallery-detail-section { padding: 48px 0 80px; }
.lightbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-top: 24px; }
.lightbox-thumb {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: block;
}
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.lightbox-thumb:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,.93);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox:not([hidden]) {
  display: flex;
}
.lightbox-img-wrap { text-align: center; max-width: 90vw; }
.lightbox-img { max-height: 80vh; max-width: 90vw; border-radius: var(--radius); }
.lightbox-caption { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 12px; }
.lightbox-counter { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 4px; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 42px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: var(--radius);
  z-index: 1001;
  opacity: .8;
  transition: all var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); opacity: 1; }

/* ── News ────────────────────────────────────────────────────────────────── */
.news-preview { padding: 80px 0; background: var(--gray-100); }
.news-section { padding: 60px 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-grid--large { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.news-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 24px; }
.news-date { font-size: 12px; font-weight: 600; color: var(--orange); display: block; margin-bottom: 8px; }
.news-body h2, .news-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-body h2 a, .news-body h3 a { color: var(--navy); }
.news-body h2 a:hover, .news-body h3 a:hover { color: var(--orange); }
.news-body p { font-size: 14px; color: var(--slate-light); margin-bottom: 12px; }
.news-more { font-size: 13px; font-weight: 700; color: var(--orange); }

/* ── Article ─────────────────────────────────────────────────────────────── */
.article-section { padding: 60px 0 80px; }
.article-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-figure { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.article-figure img { width: 100%; object-fit: cover; }
.article-excerpt { font-size: 18px; color: var(--navy); font-weight: 500; border-left: 4px solid var(--orange); padding-left: 16px; margin-bottom: 28px; }
.article-content h2, .article-content h3 { color: var(--navy); margin: 28px 0 12px; font-weight: 700; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }

/* ── Page content ────────────────────────────────────────────────────────── */
.page-content-section { padding: 60px 0 80px; }
.page-content-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.page-body h2 { color: var(--navy); font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { color: var(--navy); font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.page-body p { margin-bottom: 16px; color: var(--slate); }
.page-body ul, .page-body ol { padding-left: 20px; margin-bottom: 16px; }
.page-body li { margin-bottom: 8px; color: var(--slate); }
.page-body strong { color: var(--navy); }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.page-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sidebar-card p { font-size: 14px; color: var(--slate-light); margin-bottom: 16px; }
.sidebar-contact .phone-link { font-size: 18px; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 8px; }
.sidebar-services ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-services a { font-size: 14px; color: var(--slate); font-weight: 500; }
.sidebar-services a:hover { color: var(--orange); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-section { padding: 60px 0 80px; }
.contact-inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.contact-form-wrap { }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-card h2 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 14px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-details li { display: flex; align-items: flex-start; gap: 12px; }
.contact-details svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-details span, .contact-details a { color: rgba(255,255,255,.85); font-size: 14px; }
.contact-details a:hover { color: var(--orange); }
.contact-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.contact-badges span {
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Forms (front) ───────────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--navy); }
.form-group label span { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.has-error input, .has-error select, .has-error textarea { border-color: #ef4444; }
.field-error { color: #ef4444; font-size: 13px; }
.form-legal { font-size: 12px; color: var(--slate-light); }
.alert { display: flex; align-items: flex-start; gap: 10px; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
}
.cta-box h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-content { max-width: 800px; margin: 60px auto; }
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a {
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── Error ───────────────────────────────────────────────────────────────── */
.error-section { padding: 120px 0; text-align: center; }
.error-code { font-size: 120px; font-weight: 800; color: var(--orange); line-height: 1; opacity: .15; }
.error-content h1 { font-size: 36px; font-weight: 800; color: var(--navy); margin: -32px 0 16px; }
.error-content p { color: var(--slate-light); margin-bottom: 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Internal linking ────────────────────────────────────────────────────── */
.sidebar-news { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sidebar-news li { border-bottom: 1px solid var(--gray-100); padding-bottom: 10px; }
.sidebar-news li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-news a { font-size: 13px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; line-height: 1.4; }
.sidebar-news a:hover { color: var(--orange); }
.sidebar-news time { font-size: 11px; color: var(--slate-light); }

.related-section { padding: 48px 0; background: var(--gray-50); }
.related-section h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.related-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.related-list a { display: inline-block; padding: 6px 14px; border: 1.5px solid var(--gray-200); border-radius: 20px; font-size: 14px; color: var(--slate); font-weight: 500; transition: border-color .2s, color .2s; }
.related-list a:hover { border-color: var(--orange); color: var(--orange); }

.cta-services-links { margin-top: 28px; text-align: center; }
.cta-services-links p { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 10px; }
.cta-services-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cta-services-links a { font-size: 13px; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; }
.cta-services-links a:hover { color: var(--white); border-color: var(--white); }

.zones-list { columns: 2; gap: 32px; list-style: disc; padding-left: 20px; margin-bottom: 28px; }
.zones-list li { font-size: 15px; color: var(--slate); margin-bottom: 6px; break-inside: avoid; }
.zones-note { background: var(--orange-light, #fff7ed); border-left: 3px solid var(--orange); padding: 14px 18px; border-radius: 0 6px 6px 0; margin-bottom: 28px; font-size: 14px; }
.services-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.services-links a { font-size: 15px; color: var(--slate); font-weight: 500; }
.services-links a:hover { color: var(--orange); }
@media (max-width: 480px) { .zones-list { columns: 1; } }

/* ── Misc ────────────────────────────────────────────────────────────────── */
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--slate-light); font-size: 14px; margin-bottom: 24px; }
.back-link:hover { color: var(--orange); }
.empty-state { text-align: center; padding: 60px 0; color: var(--slate-light); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo strong { color: var(--orange); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 20px; }
.footer-fb { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 14px; }
.footer-fb:hover { color: var(--orange); }
.footer-services h3, .footer-contact h3 { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-services ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-services a { color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500; }
.footer-services a:hover { color: var(--orange); }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact address p { color: rgba(255,255,255,.75); font-size: 14px; }
.footer-contact address a { color: var(--orange); font-size: 14px; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 12px; text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Float CTA ───────────────────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,.5);
  z-index: 50;
  transition: all var(--transition);
}
.float-cta:hover { background: var(--orange-dark); transform: scale(1.08); color: var(--white); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-content-inner, .article-inner, .contact-inner { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .contact-info-card { position: static; }
}

@media (max-width: 700px) {
  .main-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 200; flex-direction: column; padding: 80px 24px 40px; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { font-size: 18px; padding: 14px 16px; }
  .main-nav .submenu { position: static; background: rgba(255,255,255,.05); border: none; box-shadow: none; border-radius: var(--radius); margin: 4px 0 4px 16px; padding: 4px; }
  .main-nav .submenu a { font-size: 15px; padding: 10px 14px; }
  .main-nav .has-submenu.open .submenu { display: flex; }
  .nav-toggle { display: flex; z-index: 300; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; min-height: auto; clip-path: none; }
  .hero::before { display: none; }
  .hero-divider { display: none; }
  .news-ticker { height: auto; min-height: 36px; }
  .hero-title { font-size: clamp(38px, 9vw, 60px); letter-spacing: -1px; }
  .services-section, .why-section, .gallery-preview, .news-preview, .cta-section { padding: 56px 0; }
  .cta-box { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   UPGRADE v2 — Industrial Precision
   ═══════════════════════════════════════════════════════════════ */

/* ── Display font for headings ─────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ── Hero — pleine hauteur + watermark + grille + diagonale ──── */
.hero {
  min-height: 88vh;
  padding: 120px 0 180px;
  display: flex;
  align-items: center;
  /* garde overflow:hidden de l'original */
}

/* slides photo */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }

/* overlay sombre — lisibilité du texte */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.68) 60%, rgba(15,23,42,.78) 100%);
  z-index: 1;
  pointer-events: none;
}

/* grille de fond subtile */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 2;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: clamp(200px, 25vw, 340px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.028);
  pointer-events: none;
  user-select: none;
  letter-spacing: -16px;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; width: 100%; }

/* barre orange gauche */
.hero-accent {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* entrée animée du contenu hero */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    animation: hero-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.32s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.38s; }
}
@keyframes hero-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* diagonale de sortie — élément séparé dans le HTML */
.hero-divider {
  height: 90px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  margin-top: -90px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

/* ── News Ticker ───────────────────────────────────────────────── */
.news-ticker {
  display: flex;
  align-items: stretch;
  height: 36px;
  background: var(--navy-mid);
  border-bottom: 2px solid rgba(249,115,22,.25);
  overflow: hidden;
  position: relative;
  z-index: 90;
}
.news-ticker__label {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 20px 0 16px;
  display: flex;
  align-items: center;
  position: relative;
}
.news-ticker__label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 0 0 10px;
  border-color: transparent transparent transparent var(--orange);
}
.news-ticker__wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
}
.news-ticker__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-run 22s linear infinite;
  padding-left: 24px;
}
.news-ticker__track:hover { animation-play-state: paused; }
.news-ticker__item { display: inline-flex; align-items: center; }
.news-ticker__item a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.news-ticker__item a:hover { color: var(--orange); }
.news-ticker__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .5;
  margin: 0 20px;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes ticker-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Service cards — hover plus marqué ────────────────────────── */
.service-card {
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.2px;
}

/* ── Stat cards — numéro plus grand ───────────────────────────── */
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
}

/* ── Buttons — léger ajustement police ────────────────────────── */
.btn { font-family: var(--font); letter-spacing: .2px; }
.btn-lg { font-size: 16px; padding: 15px 34px; }

/* ── Why section — titre sidebar ─────────────────────────────── */
.why-section { position: relative; }
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: .3;
}

/* ── Footer — logo display font ───────────────────────────────── */
.footer-logo { font-family: var(--font-display); letter-spacing: -0.5px; }
.logo-text    { font-family: var(--font-display); letter-spacing: -0.5px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { display: flex; gap: 2px; }
.star { font-size: 18px; line-height: 1; }
.star--on  { color: #f59e0b; }
.star--off { color: var(--gray-200); }
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  flex: 1;
  margin: 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar--initials {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 2px;
}

/* ── RGPD Banner ───────────────────────────────────────────────── */
.rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 3px solid var(--orange);
  z-index: 9999;
  padding: 20px 0;
}
.rgpd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rgpd-text { flex: 1; min-width: 260px; }
.rgpd-text strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.rgpd-text p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.5; }
.rgpd-actions { display: flex; gap: 10px; flex-shrink: 0; }
.rgpd-actions .btn { font-size: 14px; padding: 10px 20px; }
@media (max-width: 640px) {
  .rgpd-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rgpd-actions { width: 100%; }
  .rgpd-actions .btn { flex: 1; justify-content: center; }
}

/* Testimonials slider */
.ts-wrap { position: relative; padding: 0 48px; }
.ts-viewport { overflow: hidden; }
.ts-track { display: flex; gap: 10px; transition: transform .42s cubic-bezier(.25,.8,.25,1); will-change: transform; }
.ts-track .testimonial-card { flex: 0 0 calc((100% - 20px) / 3); padding: 15px; min-width: 0; box-sizing: border-box; margin: 0; }
.ts-btn {
  position: absolute; top: 50%; transform: translateY(-60%); z-index: 2;
  background: var(--white); border: 1px solid var(--border); border-radius: 50%;
  width: 40px; height: 40px; font-size: 26px; line-height: 1; cursor: pointer;
  color: var(--navy); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.ts-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.ts-btn:disabled { opacity: .35; cursor: default; }
.ts-prev { left: 0; }
.ts-next { right: 0; }
.ts-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; cursor: pointer; border: none; padding: 0; transition: background .2s, transform .2s; }
.ts-dot.is-active { background: var(--orange); transform: scale(1.3); }
@media (max-width: 1024px) { .ts-track .testimonial-card { flex: 0 0 calc((100% - 10px) / 2); } }
@media (max-width: 640px) { .ts-track .testimonial-card { flex: 0 0 100%; } .ts-wrap { padding: 0 36px; } .ts-btn { width: 32px; height: 32px; font-size: 20px; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin: 28px 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--orange); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 20px; font-weight: 600; font-size: 15px; color: var(--navy);
  cursor: pointer; list-style: none; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--orange); }
.faq-chevron { flex-shrink: 0; color: var(--slate); transition: transform .25s; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-answer { padding: 0 20px 18px; color: var(--slate); font-size: 14px; line-height: 1.75; }
.faq-cta-inline { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-top: 32px; }
.faq-cta-inline p { margin: 0; color: var(--slate); font-size: 14px; }
@media (max-width: 640px) { .faq-cta-inline { flex-direction: column; align-items: flex-start; } }

