/* ============================================================
   REACTIBAT — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Nunito:wght@700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --red:        #C62828;
  --red-dark:   #A21C1C;
  --red-light:  #FFEBEE;
  --dark:       #1F1F1F;
  --dark-2:     #2D2D2D;
  --gray:       #F5F5F5;
  --gray-2:     #E8E8E8;
  --white:      #FFFFFF;
  --text:       #2D2D2D;
  --muted:      #6B6B6B;
  --border:     #E2E2E2;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --t:      all 0.3s ease;
  --t-fast: all 0.18s ease;

  --max-w: 1220px;
  --px:    24px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section        { padding: 100px 0; }
.section-alt    { background: var(--gray); }
.section-dark   { background: var(--dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  margin-bottom: 18px;
}

.section-title .accent { color: var(--red); }

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198,40,40,0.38);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198,40,40,0.28);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--t);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

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

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img { height: 42px; width: auto; }

.logo-dark  { display: none; }
.logo-white { display: block; }

.header.scrolled .logo-dark  { display: block; }
.header.scrolled .logo-white { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 8px 11px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.13);
}

.header.scrolled .nav-menu a { color: var(--dark-2); }
.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
  color: var(--red);
  background: var(--red-light);
}

.nav-cta { margin-left: 12px; padding: 10px 20px; font-size: 14px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

.header.scrolled .nav-hamburger span { background: var(--dark); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}

.nav-overlay a:hover { color: var(--red); }

.nav-overlay .btn-red {
  margin-top: 20px;
  padding: 16px 40px;
  font-size: 17px;
}

.nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: var(--t-fast);
}
.nav-close:hover { color: var(--red); transform: rotate(90deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.52) 50%,
    rgba(198,40,40,0.16) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198,40,40,0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 26px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.28);
}

.hero-title .brand {
  color: var(--red);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btns .btn { padding: 16px 32px; font-size: 15px; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ============================================================
   SERVICES / EXPERTISES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--red);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--t);
  flex-shrink: 0;
}

.service-card:hover .service-card-icon {
  background: var(--red);
}

.service-card:hover .service-card-icon svg {
  stroke: var(--white) !important;
  fill: none;
}

.service-card:hover .service-card-icon svg path,
.service-card:hover .service-card-icon svg rect,
.service-card:hover .service-card-icon svg circle,
.service-card:hover .service-card-icon svg line,
.service-card:hover .service-card-icon svg polyline {
  stroke: var(--white);
}

.service-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t-fast);
}

.service-card-link:hover { gap: 10px; }

.service-card-link svg {
  transition: var(--t-fast);
}

/* ============================================================
   CONFIANCE / TRUST SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.trust-icon svg { color: var(--red); }

.trust-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
}

.trust-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--red);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 64px;
}

.stat-item {
  text-align: center;
  padding: 44px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.5px;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-preview-grid .gp-item:first-child {
  grid-row: 1 / 3;
}

.gp-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray-2);
  cursor: pointer;
  position: relative;
}

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

.gp-item:hover img { transform: scale(1.06); }

.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(198,40,40,0);
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: var(--t);
  color: var(--white);
}

.gp-item:hover .gp-overlay {
  background: rgba(198,40,40,0.55);
}

.gp-item:hover .gp-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   GALLERY PAGE — Masonry
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t-fast);
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--gray-2);
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-masonry .gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--t);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.42); }

.gallery-item-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--t);
  background: var(--red);
  padding: 5px 12px;
  border-radius: var(--r-sm);
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.hidden { display: none; }

/* ============================================================
   CHANTIER CARDS (gallery with internal carousel)
   ============================================================ */
.chantier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.chantier-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.chantier-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark);
  cursor: zoom-in;
}

.chantier-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.chantier-card-img-wrap:hover .chantier-card-img { transform: scale(1.04); }

.chantier-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chantier-nav:hover { background: rgba(0, 0, 0, 0.85); }

.chantier-prev { left: 10px; }
.chantier-next { right: 10px; }

.chantier-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 100px;
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}

.chantier-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chantier-info-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chantier-info-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: var(--red);
  flex-shrink: 0;
  border-radius: 2px;
}

.chantier-info-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--gray);
  color: var(--muted);
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

.chantier-card.hidden { display: none; }

@media (max-width: 960px) {
  .chantier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .chantier-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lightbox img {
  max-width: 85vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.lb-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--t-fast);
  flex-shrink: 0;
}

.lb-btn:hover { background: var(--red); border-color: var(--red); }

.lb-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  transition: var(--t-fast);
  z-index: 10;
}
.lb-close:hover { background: var(--red); transform: rotate(90deg); }

/* ============================================================
   PARTENAIRES & TÉMOIGNAGES
   ============================================================ */
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding: 40px 0;
}

.partner-logo {
  opacity: 0.35;
  filter: grayscale(1);
  transition: var(--t);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--red);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid transparent;
  transition: var(--t);
}

.testimonial-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #F4B400;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-role {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .btn-white { padding: 18px 44px; font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 42px; width: auto; margin-bottom: 18px; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--t-fast);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--t-fast);
}

.footer-links a:hover { color: var(--red); padding-left: 4px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

.footer-contact-item a { color: inherit; transition: var(--t-fast); }
.footer-contact-item a:hover { color: var(--white); }

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.8;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--t-fast); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--r-md);
  padding: 48px 40px;
  color: var(--white);
}

.contact-info-card h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-info-card .subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item-text span {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-map {
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-top: 28px;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-card .subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.form-field label span { color: var(--red); }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--t-fast);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: var(--red);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-field select { cursor: pointer; }

.form-error {
  font-size: 12px;
  color: var(--red);
  display: none;
}

.form-field.has-error .form-error { display: block; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.form-submit-row .btn { padding: 16px 40px; font-size: 15px; }

/* Spinner dans le bouton pendant l'envoi */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeItemIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.form-notice {
  padding: 16px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  display: none;
  animation: fadeItemIn 0.3s ease forwards;
}

.form-notice.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-notice.success::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #2E7D32;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-notice.error {
  background: #FFF3F3;
  color: #B71C1C;
  border: 1px solid #FFCDD2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-notice.error::before {
  content: '!';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #B71C1C;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.page-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  width: 100%;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--t-fast); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
}

/* Intro section */
.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-text .btn { margin-top: 12px; }

.intro-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Method steps */
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.method-step {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid transparent;
  transition: var(--t);
}

.method-step:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
}

.method-step-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--t);
}

.method-step:hover .method-step-num {
  color: var(--red);
}

.method-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.method-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Prestations list */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prestation-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--red);
  transition: var(--t);
}

.prestation-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.prestation-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

.prestation-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.prestation-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--t-fast);
}

.faq-question:hover { color: var(--red); }

.faq-question-icon {
  width: 24px;
  height: 24px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted);
  transition: var(--t);
}

.faq-item.open .faq-question-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   SERVICE PAGE — Gallery grid
   ============================================================ */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sg-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   INNER PAGES — header always white (no transparent hero)
   ============================================================ */
.inner-page .header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.inner-page .logo-dark  { display: block !important; }
.inner-page .logo-white { display: none !important; }

.inner-page .nav-menu a { color: var(--dark-2) !important; }
.inner-page .nav-menu a:hover,
.inner-page .nav-menu a.active { color: var(--red) !important; background: var(--red-light) !important; }

.inner-page .nav-hamburger span { background: var(--dark) !important; }

/* ============================================================
   NAV DROPDOWN — desktop hover
   ============================================================ */
.has-dropdown { position: relative; }

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle .chevron { transition: transform 0.22s ease; }

.has-dropdown:hover .dropdown-toggle .chevron,
.has-dropdown:focus-within .dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 215px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
  z-index: 10;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.nav-menu .dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-2) !important;
  border-radius: var(--r-sm);
  background: transparent !important;
  transition: var(--t-fast);
}

.nav-menu .dropdown-menu li a:hover,
.nav-menu .dropdown-menu li a.active {
  background: var(--gray) !important;
  color: var(--red) !important;
}

/* ---- Mobile overlay accordion ---- */
.nav-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nav-accordion-toggle {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  width: 100%;
  transition: color 0.2s;
}

.nav-accordion-toggle:hover { color: var(--red); }
.nav-accordion-toggle .chevron { transition: transform 0.25s ease; }
.nav-accordion.open .nav-accordion-toggle .chevron { transform: rotate(180deg); }
.nav-accordion.open .nav-accordion-toggle { color: var(--red); }

.nav-accordion-body {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0 10px;
  width: 100%;
}

.nav-accordion.open .nav-accordion-body { display: flex; }

.nav-accordion-body a {
  font-family: var(--font-heading);
  font-size: 20px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.6) !important;
  padding: 5px 0 !important;
  background: transparent !important;
}

.nav-accordion-body a:hover,
.nav-accordion-body a.active {
  color: var(--red) !important;
  background: transparent !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-img { aspect-ratio: 16/7; }
  .gallery-preview-grid { grid-template-rows: repeat(2, 200px); }
}

@media (max-width: 768px) {
  :root { --px: 18px; }

  .section { padding: 64px 0; }

  .section-header { margin-bottom: 44px; }

  .nav-menu,
  .nav-cta { display: none; }

  .nav-hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .stat-item { padding: 32px; }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-preview-grid .gp-item:first-child { grid-row: auto; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .page-hero { height: 380px; }

  .method-steps { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }
  .service-gallery { grid-template-columns: 1fr 1fr; }

  .gallery-masonry { columns: 2; }

  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  .cta-banner { padding: 60px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 1; }

  .service-gallery { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 28px; }
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section { background: var(--gray); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-card-label {
  padding: 15px 20px 13px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-card-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--red);
  flex-shrink: 0;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  background: var(--dark);
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  draggable: false;
}

.ba-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  z-index: 3;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.ba-handle-btn {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
  color: var(--white);
  transition: transform 0.15s ease, background 0.15s ease;
}

.ba-slider:active .ba-handle-btn,
.ba-handle-btn:hover {
  background: var(--red-dark);
  transform: scale(1.12);
}

.ba-label {
  position: absolute;
  top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  text-transform: uppercase;
  color: var(--white);
  pointer-events: none;
}

.ba-label-avant {
  left: 12px;
  background: rgba(0,0,0,0.55);
  z-index: 4;
}

.ba-label-apres {
  right: 12px;
  background: rgba(198,40,40,0.8);
  z-index: 2;
}

.ba-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  padding: 10px 12px;
  background: var(--gray);
}

.ba-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--t-fast);
  display: block;
}

.ba-thumbs img:hover { opacity: 0.75; }

.ba-thumbs-label {
  padding: 0 12px 8px;
  font-size: 12px;
  color: var(--muted);
  background: var(--gray);
}

@media (max-width: 1024px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .ba-grid { max-width: 100%; }
}

/* Finished photos row (above sliders) */
.ba-finishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}

.ba-finish-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ba-finish-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ba-finish-item:hover img { transform: scale(1.05); }

.ba-finish-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 22px 12px 10px;
  pointer-events: none;
}

.ba-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ba-divider::before, .ba-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 768px) {
  .ba-finishes-grid { grid-template-columns: repeat(2, 1fr); }
}
