/* =========================================================
   Houssem Rahmouni — Personal branding immobilier
   Bento design / Bootstrap 5
   ========================================================= */

:root {
  --navy: #10182a;
  --navy-2: #182238;
  --gold: #c9a464;
  --gold-dark: #a9843f;
  --gold-light: #e7d4ab;
  --cream: #f7f4ee;
  --ink: #1b1f27;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --card-border: rgba(16, 24, 42, 0.06);
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --shadow-soft: 0 20px 45px -20px rgba(16, 24, 42, 0.18);
  --shadow-hover: 0 28px 55px -18px rgba(16, 24, 42, 0.28);
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

button.bento-card { font: inherit; text-align: left; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background-color: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  color: var(--navy);
  margin: 0;
}

.text-gold { color: var(--gold-dark) !important; }
.bg-navy { background-color: var(--navy); }
.bg-cream { background-color: var(--cream); }

.section-py { padding: 6rem 0; }
@media (max-width: 767px) { .section-py { padding: 3.5rem 0; } }

/* ===================== BUTTONS ===================== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border: none;
  color: var(--navy);
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(169, 132, 63, 0.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(169, 132, 63, 0.6);
  color: var(--navy);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold-dark);
  color: var(--navy);
  font-weight: 600;
  border-radius: 999px;
  background: transparent;
  transition: all .25s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-dark-navy {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  transition: transform .25s ease, background .25s ease;
}
.btn-dark-navy:hover {
  background: var(--navy-2);
  color: #fff;
  transform: translateY(-2px);
}

/* ===================== NAVBAR ===================== */
#mainNav {
  padding: 1.1rem 0;
  transition: all .35s ease;
  z-index: 1030;
}
#mainNav .brand-name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}
#mainNav .brand-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
#mainNav .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .85rem !important;
}
#mainNav .nav-link:hover { color: var(--gold-light); }
#mainNav .nav-link.active { color: var(--gold-light); }
#mainNav.scrolled {
  background: rgba(16, 24, 42, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,.4);
  padding: .65rem 0;
}
#mainNav.scrolled .brand-name,
#mainNav .brand-name { color: #fff; }
.navbar-toggler { border: none; box-shadow: none; }
.navbar-toggler-icon {
  filter: invert(1);
}

/* Dropdown (Services) */
.navbar .dropdown-menu {
  border: none;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: .6rem;
  margin-top: .5rem;
}
.navbar .dropdown-item {
  border-radius: .6rem;
  padding: .55rem .9rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--cream);
  color: var(--gold-dark);
}
.navbar .dropdown-divider { margin: .4rem 0; }
@media (max-width: 991px) {
  .navbar .dropdown-menu { background: rgba(255,255,255,.06); box-shadow: none; }
  .navbar .dropdown-item { color: rgba(255,255,255,.85); }
  .navbar .dropdown-item:hover, .navbar .dropdown-item:focus { background: rgba(255,255,255,.1); color: var(--gold-light); }
}

/* ===================== BENTO GRID CORE ===================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.span-col-2 { grid-column: span 2; }
.span-row-2 { grid-row: span 2; }
.span-2x2 { grid-column: span 2; grid-row: span 2; }
.span-2x1 { grid-column: span 2; }

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  padding: 8.5rem 0 4.5rem;
  background: radial-gradient(circle at 15% 10%, #1c2942 0%, var(--navy) 55%, #0b101c 100%);
}
.hero-bento { grid-template-rows: repeat(2, minmax(140px, auto)); }

.hero-photo {
  padding: 0;
  grid-row: span 2;
  min-height: 340px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-photo-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(16, 24, 42, 0.75);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.hero-photo-badge i { color: var(--gold-light); margin-right: .35rem; }

.hero-intro {
  background: linear-gradient(155deg, #ffffff, #f4f0e8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .65rem;
}
.hero-intro h1 { font-size: clamp(2.1rem, 3.5vw, 3rem); line-height: 1.05; }
.hero-role { font-weight: 600; color: var(--gold-dark); font-size: 1.05rem; margin: 0; }
.hero-text { color: var(--muted); max-width: 46ch; margin: 0; }
.hero-cta { display: flex; gap: .85rem; margin-top: .5rem; flex-wrap: wrap; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .6rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .35rem;
  background: #fff;
}
.stat-card i { font-size: 1.5rem; color: var(--gold-dark); }
.stat-card h3 { font-size: 2rem; font-weight: 700; }
.stat-card h3 span { font-size: 1.1rem; color: var(--muted); }
.stat-card p { margin: 0; color: var(--muted); font-weight: 500; font-size: .9rem; }
.stat-card.accent { background: linear-gradient(150deg, var(--navy), #1f2c47); }
.stat-card.accent i,
.stat-card.accent h3,
.stat-card.accent h3 span,
.stat-card.accent p { color: #fff; }
.stat-card.accent i { color: var(--gold-light); }

.scroll-cue {
  text-align: center;
  margin-top: 3rem;
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===================== PAGE HEADER (sous-pages) ===================== */
.page-header {
  position: relative;
  padding: 8.5rem 0 3.5rem;
  background: radial-gradient(circle at 15% 10%, #1c2942 0%, var(--navy) 55%, #0b101c 100%);
  color: #fff;
  text-align: left;
}
.page-header .breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
}
.page-header .breadcrumb-nav a { color: rgba(255,255,255,.75); }
.page-header .breadcrumb-nav a:hover { color: var(--gold-light); }
.page-header .breadcrumb-nav .sep { color: rgba(255,255,255,.35); }
.page-header .breadcrumb-nav .current { color: var(--gold-light); font-weight: 600; }
.page-header h1 { color: #fff; font-size: clamp(2rem, 3.2vw, 2.8rem); max-width: 60ch; }
.page-header .page-lead { color: rgba(255,255,255,.75); max-width: 60ch; margin-top: .85rem; font-size: 1.05rem; }
.page-header .page-header-cta { display: flex; gap: .85rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* ===================== SECTION HEADING ===================== */
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin-bottom: .5rem; }
.section-heading.text-center { text-align: center; }
.section-sub { color: var(--muted); margin: 0; }

/* ===================== ABOUT ===================== */
.about-bento { grid-template-rows: repeat(2, minmax(160px, auto)); }
.about-photo { padding: 0; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-text { display: flex; flex-direction: column; justify-content: center; gap: .75rem; background: var(--cream); }
.about-text h3 { font-size: 1.4rem; }
.about-text p { color: var(--muted); margin: 0; }

.quote-card {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.quote-card i { font-size: 1.8rem; color: var(--gold-light); }
.quote-card p { font-family: var(--ff-serif); font-style: italic; font-size: 1.1rem; margin: 0; }
.quote-author { color: var(--gold-light); font-weight: 600; font-size: .85rem; }

.value-card { display: flex; flex-direction: column; gap: .5rem; justify-content: center; }
.value-card i { font-size: 1.6rem; }
.value-card h4 { font-size: 1.05rem; }
.value-card p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ===================== SERVICES ===================== */
.services-bento { grid-template-rows: repeat(2, minmax(180px, auto)); }
.service-card { display: flex; flex-direction: column; gap: .6rem; justify-content: center; }
.service-card i { font-size: 1.9rem; color: var(--gold-dark); }
.service-card h4 { font-size: 1.15rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .93rem; }
.featured-service {
  background: linear-gradient(140deg, var(--navy), #223257);
  color: #fff;
}
.featured-service i { color: var(--gold-light); }
.featured-service h4 { color: #fff; font-size: 1.35rem; }
.featured-service p { color: rgba(255,255,255,.75); max-width: 40ch; }

/* ===================== GALLERY ===================== */
.gallery-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  border: 1.5px solid rgba(16,24,42,.12);
  background: #fff;
  color: var(--navy);
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  transition: all .25s ease;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gallery-bento {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-tile {
  padding: 0;
  border: none;
  cursor: pointer;
  display: block;
  min-height: 100%;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile.hidden-tile { display: none; }

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: .3rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(16,24,42,0) 45%, rgba(10,14,24,.88) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  text-align: left;
}
.gallery-tile:hover .tile-overlay,
.gallery-tile:focus .tile-overlay { opacity: 1; }
.tile-status {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .2rem .6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.tile-status.sold { background: var(--gold); color: var(--navy); }
.tile-city { color: #fff; font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600; }
.tile-type { color: rgba(255,255,255,.8); font-size: .82rem; }

@media (min-width: 992px) {
  .gallery-bento .span-2x2 { grid-column: span 2; grid-row: span 2; }
  .gallery-bento .span-row-2 { grid-row: span 2; }
  .gallery-bento .span-2x1 { grid-column: span 2; }
}

/* ===================== COVERAGE ===================== */
.coverage-bento { grid-template-rows: auto; }
.coverage-map { color: #fff; background: linear-gradient(150deg, #16223c, var(--navy)); }
.coverage-map .eyebrow { color: rgba(255,255,255,.6); }
.coverage-map h2 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: .75rem; }
.coverage-text { color: rgba(255,255,255,.75); max-width: 55ch; margin-bottom: 1.5rem; }
.city-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.city-pills span,
.city-pills a {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .82rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  display: inline-block;
  transition: all .2s ease;
}
.city-pills a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.coverage-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
}
.coverage-stat i { color: var(--gold-light); font-size: 1.5rem; }
.coverage-stat h3 { color: #fff; font-size: 2rem; }
.coverage-stat p { color: rgba(255,255,255,.7); margin: 0; }

/* ===================== REVIEWS ===================== */
.reviews-bento { grid-template-rows: repeat(2, minmax(180px, auto)); }
.review-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; background: var(--cream); }
.review-card .stars { color: var(--gold-dark); font-size: .95rem; letter-spacing: 2px; }
.review-card p { font-style: italic; color: var(--ink); margin: 0; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-author .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; }
.review-author span { color: var(--muted); font-size: .8rem; }

/* ===================== CONTACT ===================== */
.contact-bento { grid-template-rows: auto; }
.contact-form-card { grid-row: span 2; }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.contact-form-card .form-control {
  border-radius: .8rem;
  border: 1.5px solid rgba(16,24,42,.1);
  padding: .65rem .9rem;
}
.contact-form-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,100,.2);
}
.contact-form-card .form-label { font-weight: 600; font-size: .88rem; color: var(--navy); }

.contact-info-card { display: flex; flex-direction: column; gap: .4rem; justify-content: center; }
.contact-info-card i { font-size: 1.5rem; color: var(--gold-dark); }
.contact-info-card h4 { font-size: 1.05rem; }
.contact-info-card a { color: var(--ink); font-weight: 600; }
.contact-info-card a:hover { color: var(--gold-dark); }
.contact-info-card p { color: var(--muted); margin: 0; }
.social-links { display: flex; gap: .6rem; margin-top: .5rem; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.social-links a:hover { background: var(--gold-dark); }

/* ===================== FOOTER ===================== */
.footer-section { background: var(--navy); color: rgba(255,255,255,.75); padding: 3.5rem 0 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand .brand-name { font-family: var(--ff-serif); font-size: 1.3rem; color: #fff; }
.footer-brand p { margin: .3rem 0 0; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-nav { list-style: none; display: flex; gap: 1.4rem; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-section hr { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .82rem; }
.footer-credit { color: rgba(255,255,255,.4); }

/* ===================== LIGHTBOX MODAL ===================== */
.lightbox-content {
  background: var(--navy);
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  position: relative;
}
.lightbox-content img { width: 100%; max-height: 70vh; object-fit: cover; }
.lightbox-caption { padding: 1.25rem 1.5rem 1.5rem; }
.lightbox-caption h4 { color: #fff; font-size: 1.3rem; margin: .4rem 0 .15rem; }
.lightbox-caption p { color: rgba(255,255,255,.7); margin: 0; }
.btn-close-custom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(16,24,42,.6);
  color: #fff;
  border: none;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.btn-close-custom:hover { background: var(--gold-dark); color: var(--navy); }

/* ===================== SERVICE DETAIL PAGES ===================== */
.steps-bento { grid-template-columns: repeat(4, 1fr); }
.step-card { display: flex; flex-direction: column; gap: .5rem; }
.step-card .step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--ff-serif);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .5rem;
}
.step-card h4 { font-size: 1.05rem; }
.step-card p { color: var(--muted); margin: 0; font-size: .92rem; }

.benefit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--ink); }
.benefit-list i { color: var(--gold-dark); font-size: 1.2rem; margin-top: .1rem; }

.related-services { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.related-services a {
  border: 1.5px solid rgba(16,24,42,.12);
  color: var(--navy);
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  transition: all .25s ease;
}
.related-services a:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--cream); }

/* ===================== VILLE PAGES ===================== */
.city-hero-photo { padding: 0; overflow: hidden; min-height: 320px; }
.city-hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.city-fact-card { display: flex; flex-direction: column; gap: .4rem; justify-content: center; }
.city-fact-card i { font-size: 1.4rem; color: var(--gold-dark); }
.city-fact-card h4 { font-size: 1rem; }
.city-fact-card p { color: var(--muted); margin: 0; font-size: .9rem; }

.other-cities-block { background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem; margin-top: 1rem; }
.other-cities-block h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.other-cities-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.other-cities-links a {
  background: #fff;
  border: 1px solid rgba(16,24,42,.08);
  color: var(--navy);
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  transition: all .25s ease;
}
.other-cities-links a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ===================== AVIS PAGE ===================== */
.avis-summary { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.avis-summary .avis-score { font-family: var(--ff-serif); font-size: 3rem; font-weight: 700; color: var(--navy); }
.avis-summary .stars { color: var(--gold-dark); font-size: 1.1rem; letter-spacing: 3px; }

/* ===================== PLAN DU SITE ===================== */
.plan-bento { grid-template-columns: repeat(3, 1fr); }
.plan-card h3 { font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.plan-card h3 i { color: var(--gold-dark); }
.plan-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.plan-card a { color: var(--muted); font-size: .92rem; transition: color .2s ease; }
.plan-card a:hover { color: var(--gold-dark); }
.plan-card.villes-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem .8rem; }

/* ===================== FLOATING CTA ===================== */
.fab-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 14px 30px -8px rgba(169,132,63,.6);
  z-index: 1040;
  transition: transform .25s ease;
}
.fab-cta:hover { transform: scale(1.08); color: var(--navy); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .hero-photo { min-height: 260px; }
  .steps-bento, .plan-bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .bento-grid,
  .hero-bento,
  .about-bento,
  .services-bento,
  .coverage-bento,
  .reviews-bento,
  .contact-bento,
  .steps-bento,
  .plan-bento { grid-template-columns: 1fr; }
  .span-col-2, .span-2x2, .span-2x1 { grid-column: span 1; }
  .span-row-2, .span-2x2 { grid-row: span 1; }
  .hero-photo, .city-hero-photo { min-height: 320px; }
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .contact-form-card { grid-row: span 1; }
  .footer-top { flex-direction: column; }
  .page-header { padding: 7rem 0 3rem; }
  .other-cities-block { padding: 1.75rem; }
  .plan-card.villes-card ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
