/* ─────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────── */
:root {
  --navy:    #0c1f35;
  --ocean:   #1a4d6b;
  --teal:    #2e7d6e;
  --teal-dk: #235e55;
  --sand:    #c8b99a;
  --cream:   #f7f3eb;
  --linen:   #ede8df;
  --white:   #ffffff;
  --text:    #2c3440;
  --muted:   #7a8390;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(5rem, 10vw, 8rem);
}

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

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1   { font-size: clamp(2.6rem, 7.5vw, 5.5rem); }
h2   { font-size: clamp(2rem, 5vw, 3.5rem); }
h3   { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
em   { font-style: italic; }

p { line-height: 1.75; color: var(--text); }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.label.light { color: var(--sand); }

/* ─────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.05rem; color: var(--muted); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* stagger siblings in grids */
.reno-grid  .reno-card:nth-child(2),
.naut-grid  .naut-card:nth-child(2) { transition-delay: 0.1s; }
.reno-grid  .reno-card:nth-child(3),
.naut-grid  .naut-card:nth-child(3) { transition-delay: 0.2s; }
.reno-grid  .reno-card:nth-child(4),
.naut-grid  .naut-card:nth-child(4) { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.2rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.logo img {
  display: block;
  height: 68px;
  width: auto;
  padding: 4px;
  border-radius: 50%;
  background: #fdfdfc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: height 0.4s ease;
}
.nav.scrolled .logo img { height: 54px; }

.logo-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  transition: font-size 0.4s ease;
}
.nav.scrolled .logo-text { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 0.5rem 1.3rem !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
  transition: border-color 0.3s, background 0.3s !important;
}
.nav-cta:hover { border-color: #fff !important; background: rgba(255,255,255,0.1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,31,53,0.55) 0%,
    rgba(12,31,53,0.72) 55%,
    rgba(12,31,53,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 var(--gutter);
  max-width: 900px;
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.6rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 55px;
  background: rgba(255,255,255,0.4);
  animation: scrollDrop 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0.8; }
  60%  { transform: scaleY(1); opacity: 0.8; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─────────────────────────────────────────
   À PROPOS
───────────────────────────────────────── */
.apropos {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.apropos-text h2 { margin-bottom: 1.4rem; }
.apropos-text p   { margin-bottom: 1rem; font-size: 1.05rem; }
.apropos-text strong { color: var(--navy); font-weight: 500; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tags span {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 500;
  text-transform: uppercase;
}

.photo-stack {
  position: relative;
  height: 520px;
}
.photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 48%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 6px solid var(--white);
}

/* ─────────────────────────────────────────
   RÉNOVATION
───────────────────────────────────────── */
.renovation {
  padding: var(--section-pad) 0 0;
  background: var(--cream);
}

.reno-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.reno-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.85s ease, transform 0.85s ease;
}
.reno-card:hover {
  transform: translateY(-6px) !important; /* override reveal transform on hover */
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.reno-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.reno-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.reno-card:hover .reno-img img { transform: scale(1.06); }

.reno-info { padding: 1.4rem 1.5rem 1.6rem; }
.reno-info h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.reno-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

.recycle-band {
  margin-top: 5rem;
  background: var(--teal);
  padding: 3rem 0;
}
.recycle-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.recycle-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.recycle-band h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.recycle-band p { color: rgba(255,255,255,0.82); max-width: 580px; }

/* ─────────────────────────────────────────
   NAUTISME
───────────────────────────────────────── */
.nautisme {
  background: var(--navy);
  color: var(--white);
  padding-bottom: var(--section-pad);
}

.naut-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 4rem;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.naut-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 31, 53, 0.85) 0%,
    rgba(12, 31, 53, 0.45) 50%,
    rgba(12, 31, 53, 0.25) 100%
  );
}
.naut-header-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
}
.naut-header-overlay h2 { color: var(--white); margin-top: 0.5rem; }

.naut-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  line-height: 1.8;
}

.naut-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.naut-card { overflow: hidden; }
.naut-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.naut-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.55s ease, filter 0.55s ease;
}
.naut-card:hover .naut-img img { transform: scale(1.05); filter: brightness(1); }
.naut-info { padding: 1.1rem 0.25rem 0; }
.naut-info h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.naut-info p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* Van / Aménagement */
.van-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.van-text h3 { color: var(--white); margin-bottom: 1.2rem; }
.van-text p  { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; font-size: 1rem; }
.van-text ul { display: flex; flex-direction: column; gap: 0.6rem; }
.van-text li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.3rem;
  position: relative;
}
.van-text li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}

.van-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.van-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.van-photos .van-img:last-child { margin-top: 2.5rem; }

/* ─────────────────────────────────────────
   AMÉNAGEMENT
───────────────────────────────────────── */
.amenagement {
  padding: var(--section-pad) 0;
  background: var(--linen);
}

.amenagement-sub { margin-top: 5rem; }

.sub-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.sub-intro {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* Van sub-section inside amenagement */
.van-sub { padding-top: 5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.van-sub-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.van-sub-text h3 { color: var(--navy); margin-bottom: 1.2rem; }
.van-sub-text h3 em { color: var(--teal); }
.van-sub-text p  { margin-bottom: 1.5rem; color: var(--muted); font-size: 1rem; }
.van-sub-text ul { display: flex; flex-direction: column; gap: 0.6rem; }
.van-sub-text li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
}
.van-sub-text li::before { content: '—'; position: absolute; left: 0; color: var(--teal); }

.van-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.van-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.van-gallery .van-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* ─────────────────────────────────────────
   RÉPARATION
───────────────────────────────────────── */
.reparation {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.rep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

/* Feature card : spans both columns, two photos side by side */
.rep-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  background: var(--cream);
  overflow: hidden;
  align-items: center;
}
.rep-feature-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rep-feature-photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.rep-feature-photos .rep-photo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  object-position: center 30%;
}
.rep-feature-text {
  padding: 2rem 2rem 2rem 0.5rem;
}
.rep-feature-text h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.rep-feature-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* Regular repair cards */
.rep-card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rep-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.rep-img { aspect-ratio: 4 / 3; overflow: hidden; }
.rep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rep-card:hover .rep-img img { transform: scale(1.05); }
.rep-info { padding: 1.4rem 1.5rem 1.6rem; }
.rep-info h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.4rem; }
.rep-info p  { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ─────────────────────────────────────────
   AVANT / APRÈS (sliders, reused in amenagement)
───────────────────────────────────────── */
.amenagement .ba-sliders {
  background: transparent;
  padding: 0;
}

.ba-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.ba-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s linear;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.9);
  z-index: 10;
  pointer-events: none;
}
.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  pointer-events: none;
}
.ba-btn svg { width: 18px; height: 18px; }

.ba-caption {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-info { max-width: 42rem; margin: 0 auto; text-align: center; }
.contact-info h2   { margin-bottom: 1rem; }
.contact-info > p  { margin-bottom: 2rem; color: var(--muted); font-size: 1.05rem; }

.contact-items { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-item  { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; }
.contact-item svg { width: 18px; height: 18px; stroke: var(--teal); flex-shrink: 0; }
.contact-item a:hover { color: var(--teal); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand .logo { margin-bottom: 0.9rem; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
}
.footer-contact a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-align: center;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET  ≤ 1024px
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .apropos-grid { gap: 3rem; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE  ≤ 768px
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav mobile */
  .burger { display: flex; }
  .logo img { height: 50px; }
  .logo-text { font-size: 1.2rem; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }

  /* À propos */
  .apropos-grid { grid-template-columns: 1fr; }
  .photo-stack  { height: 360px; }

  /* Rénovation */
  .reno-grid { grid-template-columns: 1fr; }

  /* Recycle band */
  .recycle-inner { flex-direction: column; text-align: center; }

  /* Nautisme */
  .naut-grid    { grid-template-columns: 1fr; }
  .van-section  { grid-template-columns: 1fr; gap: 2.5rem; }
  .van-photos   { grid-template-columns: 1fr 1fr; }
  .van-photos .van-img:last-child { margin-top: 0; }

  /* Avant/Après & sliders */
  .ba-sliders   { grid-template-columns: 1fr; }
  .ba-container { aspect-ratio: 4 / 3; }

  /* Aménagement */
  .van-sub-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .van-gallery .van-wide { aspect-ratio: 4 / 3; }

  /* Réparation */
  .rep-grid { grid-template-columns: 1fr; }
  .rep-feature { grid-template-columns: 1fr; }
  .rep-feature-text { padding: 1.5rem; }
  .rep-feature-photos img { aspect-ratio: 4 / 3; }

  /* Footer */
  .footer-top  { flex-direction: column; gap: 2rem; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SMALL  ≤ 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  .naut-grid    { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost  { width: 100%; text-align: center; }
  .photo-stack { height: 280px; }
  .logo img { height: 44px; }
  .logo-text { font-size: 1.05rem; }
}
