/* ===================================================================
   GÎTE AQUARIUS — thème clair
=================================================================== */

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

:root {
  --bg:          #ffffff;
  --bg2:         #f8f5f1;
  --bg3:         #f2ede7;
  --pink:        #e8195a;
  --pink-lt:     #f03a70;
  --pink-dim:    rgba(232,25,90,.1);
  --pink-border: rgba(232,25,90,.25);
  --text:        #6a6460;
  --text-br:     #1c1714;
  --border:      rgba(0,0,0,.08);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md:   0 2px 8px rgba(0,0,0,.07), 0 8px 24px rgba(0,0,0,.05);
  --nav-h:       68px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────────────────────────── */

h1,h2,h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-br);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 500; }

.serif { font-family: 'Playfair Display', Georgia, serif; }

.label {
  display: inline-block;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}

/* ── Layout ─────────────────────────────────────────────────────── */

.container {
  width: min(1160px, 100% - 4rem);
  margin-inline: auto;
}

.section         { padding: 5.5rem 0; }
.section--warm   { background: var(--bg2); }
.section--warmer { background: var(--bg3); }

/* ── Reveal ─────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: .1s; }
.reveal-delay-2          { transition-delay: .2s; }
.reveal-delay-3          { transition-delay: .32s; }
.reveal-delay-4          { transition-delay: .45s; }

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 34px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--pink);
  transition: right var(--transition);
}
.nav__links a:hover { color: var(--text-br); }
.nav__links a:hover::after { right: 0; }

/* Séparateur lang */
.nav__lang-sep {
  width: 1px; height: 16px;
  background: var(--border);
  margin: 0 .2rem;
}

.nav__lang a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: .2rem .4rem;
  color: var(--text);
  transition: color var(--transition);
}
.nav__lang a.active { color: var(--pink); }
.nav__lang a:not(.active):hover { color: var(--text-br); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-br);
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  padding: 1.8rem 2rem;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 1.3rem;
  list-style: none;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: .9rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-br);
  padding: .55rem 0;
  min-height: 44px;
  display: flex; align-items: center;
}
.nav__mobile .lang-row {
  display: flex; gap: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.nav__mobile .lang-row a { text-transform: uppercase; font-size: .8rem; }
.nav__mobile .lang-row a.active { color: var(--pink); }

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh; min-height: 580px;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,8,6,.78) 0%,
    rgba(10,8,6,.5) 55%,
    rgba(10,8,6,.15) 100%
  );
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 660px;
  animation: heroFadeUp .85s .2s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--pink);
}
.hero__eyebrow span {
  font-size: .67rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink);
}

.hero h1 { margin-bottom: 1.2rem; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero h1,
.hero .hero__sub { color: #f2ede7; }

.hero__sub {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(242,237,231,.85);
  max-width: 490px;
  margin-bottom: 2.2rem;
}

.hero__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 2rem;
  background: var(--pink); color: #fff;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.hero__cta:hover { background: var(--pink-lt); transform: translateY(-2px); }
.hero__cta svg { transition: transform var(--transition); }
.hero__cta:hover svg { transform: translateX(3px); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  cursor: pointer;
}
.hero__scroll span {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,237,231,.45);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity:.35; transform: scaleY(1); }
  50%      { opacity:1;   transform: scaleY(.5); }
}

/* ══════════════════════════════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════════════════════════════ */

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-strip__item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.intro-strip__item:last-child { border-right: none; }
.intro-strip__item:hover { background: var(--pink-dim); }

.intro-strip__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--pink); line-height: 1;
  margin-bottom: .35rem;
}
.intro-strip__label {
  font-size: .73rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════════════
   NOS APPARTEMENTS
══════════════════════════════════════════════════════════════════ */

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

.apparts__text h2 { margin-bottom: 1rem; }

.apparts__divider {
  width: 44px; height: 2px;
  background: var(--pink); margin: 1.6rem 0;
}

.apparts__text p { margin-bottom: .9rem; color: var(--text); }

.apparts__callout {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--pink);
  background: var(--pink-dim);
  font-size: .9rem; color: var(--text-br); line-height: 1.65;
}
.apparts__callout strong { color: var(--pink); }

/* Cards */
.appart-cards { display: grid; gap: .9rem; }

.appart-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.appart-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }

.appart-card__img { overflow: hidden; }
.appart-card__img img {
  width: 100%; height: 100%; min-height: 80px;
  object-fit: cover;
  transition: transform .5s ease;
}
.appart-card:hover .appart-card__img img { transform: scale(1.07); }

.appart-card__info {
  padding: .85rem 1rem;
  display: flex; flex-direction: column; justify-content: center;
}
.appart-card__type {
  font-size: .63rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink); margin-bottom: .25rem;
}
.appart-card__name {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; color: var(--text-br); margin-bottom: .25rem;
}
.appart-card__desc { font-size: .78rem; color: var(--text); line-height: 1.5; }

/* Amenities */
.amenities {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 2.8rem; padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.amenity {
  display: flex; align-items: center; gap: .42rem;
  padding: .42rem .85rem;
  background: var(--bg); border: 1px solid var(--border);
  font-size: .77rem; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), color var(--transition);
}
.amenity:hover { border-color: var(--pink-border); color: var(--text-br); }
.amenity svg { color: var(--pink); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   GALERIE INTÉRIEURS
══════════════════════════════════════════════════════════════════ */

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .7rem; }
.section-header p { max-width: 530px; margin-inline: auto; color: var(--text); }

.rooms {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .8rem;
}

.room {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg3);
}
.room::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.7) 0%, transparent 55%);
  opacity: .65; transition: opacity var(--transition);
}
.room:hover::after { opacity: .9; }
.room img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.room:hover img { transform: scale(1.04); }
.room--hero { grid-row: span 2; }
.room--hero img { height: 100%; min-height: 420px; }
.room img { height: 248px; }

.room__label { position: absolute; bottom: 1rem; left: 1.1rem; z-index: 1; }
.room__label h3 { font-size: 1rem; color: #f2ede7; }
.room__label span {
  font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink);
}
.room__zoom {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  background: rgba(10,8,6,.35); backdrop-filter: blur(4px); color: #fff;
}
.room:hover .room__zoom { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════
   LA TERRASSE
══════════════════════════════════════════════════════════════════ */

.terrasse-hero {
  position: relative; height: 66vh; min-height: 400px;
  overflow: hidden; display: flex; align-items: center;
}
.terrasse-hero__bg { position: absolute; inset: 0; }
.terrasse-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}
.terrasse-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,8,6,.85) 0%, rgba(10,8,6,.4) 55%, rgba(10,8,6,.1) 100%);
}
.terrasse-hero__content { position: relative; z-index: 1; max-width: 510px; }
.terrasse-hero__content h2 { margin-bottom: 1rem; color: #f2ede7; }
.terrasse-hero__content p { color: rgba(242,237,231,.82); line-height: 1.78; }
.terrasse-tag {
  display: inline-block; margin-top: 1.2rem;
  padding: .32rem .85rem;
  border: 1px solid rgba(232,25,90,.5);
  color: var(--pink);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}

.terrasse-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
  margin-top: 2rem;
}
.terrasse-grid__item { overflow: hidden; cursor: pointer; }
.terrasse-grid__item img {
  width: 100%; height: 210px; object-fit: cover;
  transition: transform .5s ease;
}
.terrasse-grid__item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════════════════════
   LOCALISATION
══════════════════════════════════════════════════════════════════ */

.location {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: stretch;
}

.location__map {
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.location__map iframe {
  width: 100%; height: 100%; min-height: 380px;
  border: 0; display: block;
}
.location__map-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(255,255,255,.9), transparent);
  padding: 1.2rem; pointer-events: none;
}
.location__map-badge span {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink);
}

.location__info {
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
}
.location__info > p { color: var(--text); }

.location__address {
  padding: 1.3rem;
  border: 1px solid var(--pink-border);
  background: var(--pink-dim);
}
.location__address-label {
  font-size: .63rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: .5rem;
}
.location__address-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text-br); line-height: 1.55;
}

.location__features { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.location__feature {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: var(--text);
}
.location__feature svg { color: var(--pink); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════
   PARIS
══════════════════════════════════════════════════════════════════ */

.paris-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center; margin-bottom: 2.5rem;
}
.paris-split__text h2 { margin-bottom: 1rem; }
.paris-split__text p  { color: var(--text); margin-bottom: .85rem; }

.paris-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 190px 155px;
  gap: .65rem;
}
.paris-gallery__item { overflow: hidden; cursor: pointer; }
.paris-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.paris-gallery__item:hover img { transform: scale(1.07); }
.paris-gallery__item:nth-child(1) { grid-column: span 2; }
.paris-gallery__item:nth-child(5) { grid-column: span 2; }

.paris-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-top: 3rem; padding-top: 2.8rem; border-top: 1px solid var(--border);
}
.highlight {
  padding: 1.6rem 1.1rem; text-align: center;
  border: 1px solid var(--border); background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.highlight:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.highlight__icon { font-size: 1.5rem; margin-bottom: .65rem; }
.highlight h3 { font-size: .88rem; color: var(--text-br); margin-bottom: .3rem; }
.highlight p  { font-size: .77rem; color: var(--text); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,8,6,.95);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }

.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; color: #f2ede7;
  background: rgba(10,8,6,.5); font-size: 1.1rem;
  transition: border-color var(--transition);
}
.lightbox__close:hover { border-color: var(--pink); }
.lightbox__img {
  max-width: 90vw; max-height: 86vh; object-fit: contain;
  animation: lightboxIn .2s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,8,6,.5); color: #f2ede7;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.3rem;
  transition: border-color var(--transition);
}
.lightbox__prev { left: 1.2rem; }
.lightbox__next { right: 1.2rem; }
.lightbox__prev:hover, .lightbox__next:hover { border-color: var(--pink); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.2rem;
}
.footer__brand img { height: 32px; margin-bottom: .9rem; }
.footer__brand p   { font-size: .86rem; color: var(--text); max-width: 260px; line-height: 1.65; }

.footer__col h4 {
  font-size: .67rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: .9rem;
}
.footer__col ul { list-style: none; }
.footer__col li { font-size: .86rem; color: var(--text); margin-bottom: .4rem; }
.footer__col a { transition: color var(--transition); }
.footer__col a:hover { color: var(--text-br); }
.footer__col a.active { color: var(--pink); font-weight: 500; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid var(--border);
  font-size: .76rem; color: rgba(106,100,96,.45);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .apparts { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .intro-strip__item:nth-child(2),
  .intro-strip__item:nth-child(4) { border-right: none; }
  .paris-split { grid-template-columns: 1fr; gap: 2rem; }
  .paris-gallery { grid-template-columns: repeat(4, 1fr); grid-template-rows: 170px; }
  .paris-gallery__item:nth-child(n+5) { display: none; }
  .paris-gallery__item:nth-child(1) { grid-column: span 2; }
  .paris-gallery__item:nth-child(5) { grid-column: auto; }
  .paris-highlights { grid-template-columns: 1fr 1fr; }
  .location { grid-template-columns: 1fr; }
  .location__map, .location__map iframe { min-height: 300px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { width: min(1160px, 100% - 2.4rem); }
  .nav__links { display: none; }
  .nav__lang  { display: none; }
  .nav__lang-sep { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 3.5rem 0; }
  .rooms { grid-template-columns: 1fr; }
  .room--hero { grid-row: auto; grid-column: auto; }
  .room--hero img, .room img { height: 240px; min-height: unset; }
  .terrasse-grid { grid-template-columns: 1fr 1fr; }
  .paris-gallery { grid-template-columns: repeat(3, 1fr); grid-template-rows: 140px; }
  .paris-gallery__item:nth-child(n+4) { display: none; }
  .paris-highlights { grid-template-columns: 1fr 1fr; }
  .location__features { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: .4rem; text-align: center; }
}

@media (max-width: 480px) {
  .intro-strip { grid-template-columns: 1fr 1fr; }
  .terrasse-grid { grid-template-columns: 1fr; }
  .paris-highlights { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .appart-card { grid-template-columns: 90px 1fr; }
}
