/* ============================================
   GROUPE B — Site Web
   Design: moderne, premium, mobile-first
   Palette: forest green + warm cream + charcoal
   ============================================ */

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

:root {
  /* Colors */
  --clr-bg:        #FAFAF7;
  --clr-surface:   #FFFFFF;
  --clr-surface-2: #F3F1EC;
  --clr-text:      #1A1A1A;
  --clr-text-muted:#6B6B6B;
  --clr-primary:   #2D5A3D;
  --clr-primary-light: #3A7350;
  --clr-primary-dark:  #1E3F2B;
  --clr-accent:    #C8A96E;
  --clr-accent-light: #D4BA85;
  --clr-border:    #E5E2DB;
  --clr-hero-overlay: rgba(15, 30, 20, 0.55);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Radius */
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

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

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.btn svg, .btn i { width: 18px; height: 18px; }

.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}
.btn--primary:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.btn--accent:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease);
}
.nav--scrolled {
  background: rgba(250, 250, 247, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--clr-text);
}
.nav__logo-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.nav__logo-text { letter-spacing: -0.02em; }
.nav__logo-text strong { font-weight: 700; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--clr-primary);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width var(--duration) var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open { display: flex; }
  .nav__cta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3a28;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,20,0.7) 0%, rgba(30,60,40,0.55) 50%, rgba(15,30,20,0.75) 100%);
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

/* old overlay removed — now in hero section above */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__title--accent {
  color: var(--clr-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration) var(--ease);
  animation: bounce 2s infinite;
}
.hero__scroll a:hover { color: rgba(255, 255, 255, 0.8); }
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- STATS ---------- */
.stats {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-lg) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
}
.stat__number small { font-size: 0.6em; opacity: 0.6; }
.stat__label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

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

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--space-2xl) 0;
}
.section--alt {
  background: var(--clr-surface-2);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}
.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section__desc {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ---------- APARTMENTS ---------- */
.address-group {
  margin-bottom: var(--space-xl);
}
.address-group:last-child { margin-bottom: 0; }

.address-group__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-border);
}
.address-group__title svg { width: 22px; height: 22px; }

.apartments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .apartments__grid {
    grid-template-columns: 1fr;
  }
}
.apartments__grid--single {
  grid-template-columns: 1fr;
  max-width: 700px;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}

.card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--clr-surface-2);
}
.card--featured .card__image { aspect-ratio: 16/9; }

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__image img {
  transform: scale(1.05);
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.6);
}
.card__image-placeholder svg, .card__image-placeholder i { width: 48px; height: 48px; }
.card__image-placeholder span { font-size: 0.875rem; font-weight: 500; }

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--clr-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.card__badge--gold {
  background: var(--clr-accent);
}

.card__body {
  padding: 1.5rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.card__features li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
}
.card__features li svg,
.card__features li i { width: 16px; height: 16px; color: var(--clr-primary); }

/* ---------- FEATURES ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.feature {
  background: var(--clr-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease);
}
.feature:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature__icon svg,
.feature__icon i { width: 28px; height: 28px; color: var(--clr-primary); }
.feature__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature__text {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ---------- BUANDERIE ---------- */
.buanderie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.buanderie__text {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.buanderie__features {
  margin-bottom: 2rem;
}
.buanderie__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--clr-text);
}
.buanderie__features li svg,
.buanderie__features li i { width: 20px; height: 20px; color: var(--clr-primary); flex-shrink: 0; }

.buanderie__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.buanderie__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.5);
}
.buanderie__image-placeholder svg,
.buanderie__image-placeholder i { width: 64px; height: 64px; }
.buanderie__image-placeholder span { font-size: 1rem; font-weight: 500; }

@media (max-width: 768px) {
  .buanderie { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- RAWDON ---------- */
.rawdon__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.rawdon__card {
  background: var(--clr-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease);
}
.rawdon__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.rawdon__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.rawdon__card-icon svg,
.rawdon__card-icon i { width: 24px; height: 24px; color: var(--clr-primary); }
.rawdon__card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.rawdon__card p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ---------- QUOTE ---------- */
.quote-section {
  padding: var(--space-xl) 0;
  background: var(--clr-primary);
}
.quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--clr-surface);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.contact__card > svg,
.contact__card > i { width: 24px; height: 24px; color: var(--clr-primary); flex-shrink: 0; margin-top: 2px; }
.contact__card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact__card a,
.contact__card p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.contact__card a:hover { color: var(--clr-primary); }

.contact__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact__social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clr-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--duration) var(--ease);
}
.contact__social:hover {
  background: var(--clr-primary);
  color: #fff;
}

.contact__map {
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--clr-text);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
}
.footer__brand p {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.footer__brand .nav__logo { margin-bottom: 0.5rem; }
.footer__brand .nav__logo-text { color: #fff; }
.footer__citq {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a,
.footer__col li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration) var(--ease);
}
.footer__col a:hover { color: var(--clr-accent); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- ANIMATIONS (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PHOTO BAND ---------- */
.photo-band {
  overflow: hidden;
  background: var(--clr-text);
  padding: 0.5rem 0;
}
.photo-band__track {
  display: flex;
  gap: 0.5rem;
  animation: scrollPhotos 30s linear infinite;
  width: max-content;
}
.photo-band__track img {
  height: 180px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes scrollPhotos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-band:hover .photo-band__track {
  animation-play-state: paused;
}
@media (max-width: 640px) {
  .photo-band__track img { height: 120px; }
}

/* ---------- EXTERIOR SHOWCASE ---------- */
.exterior-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 400px;
}
.exterior-showcase__main {
  overflow: hidden;
}
.exterior-showcase__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  cursor: pointer;
}
.exterior-showcase__main img:hover { transform: scale(1.03); }
.exterior-showcase__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.exterior-showcase__side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  cursor: pointer;
}
.exterior-showcase__side img:hover { transform: scale(1.03); }
@media (max-width: 640px) {
  .exterior-showcase { grid-template-columns: 1fr; max-height: none; }
  .exterior-showcase__main img { aspect-ratio: 16/9; }
  .exterior-showcase__side { flex-direction: row; }
  .exterior-showcase__side img { aspect-ratio: 1; }
}

/* ---------- CARD GALLERY ---------- */
.card__gallery {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--clr-surface-2);
}
.card--featured .card__gallery { aspect-ratio: 16/9; }

.card__gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s var(--ease);
}
.card__gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
}

.card__gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.card__gallery-btn svg,
.card__gallery-btn i { width: 18px; height: 18px; color: var(--clr-text); }
.card__gallery-btn--prev { left: 0.75rem; }
.card__gallery-btn--next { right: 0.75rem; }
.card:hover .card__gallery-btn { opacity: 1; }
.card__gallery-btn:hover { background: #fff; }

.card__gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.card__gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.card__gallery-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ---------- BUANDERIE IMAGES ---------- */
.buanderie__images {
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 0.75rem;
}
.buanderie__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.buanderie__img--main {
  height: 100%;
  min-height: 250px;
}
.buanderie__img--small {
  height: 100%;
  max-height: 180px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--duration) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__close svg,
.lightbox__close i { width: 24px; height: 24px; }

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--duration) var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.2); }
.lightbox__btn svg,
.lightbox__btn i { width: 28px; height: 28px; }
.lightbox__btn--prev { left: 1.5rem; }
.lightbox__btn--next { right: 1.5rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- CARD SPECS & TIMES ---------- */
.card__header { margin-bottom: 0.5rem; }
.card__subtitle {
  font-size: 0.8125rem;
  color: var(--clr-accent);
  font-weight: 500;
}
.card__specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.card__specs span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--clr-text);
  font-weight: 500;
}
.card__specs i { width: 16px; height: 16px; color: var(--clr-primary); }
.card__times {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.card__times span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
}
.card__times i { width: 14px; height: 14px; }

/* ---------- WELCOME BOOK ---------- */
.welcome__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.welcome__card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
}
.welcome__card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}
.welcome__card--emergency {
  border-color: #dc2626;
  background: #fef2f2;
}
.welcome__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.welcome__card--emergency .welcome__card-icon {
  background: rgba(220, 38, 38, 0.1);
}
.welcome__card-icon i { width: 24px; height: 24px; color: var(--clr-primary); }
.welcome__card--emergency .welcome__card-icon i { color: #dc2626; }
.welcome__card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.welcome__card-content {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.welcome__card-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.welcome__card-content li {
  padding-left: 1.25rem;
  position: relative;
}
.welcome__card-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 700;
}
.welcome__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.welcome__row:last-child { border-bottom: none; }
.welcome__row strong { font-size: 0.875rem; }
.welcome__row span { font-weight: 600; color: var(--clr-primary); }

/* ---------- TESTIMONIALS ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 2rem;
}
.testimonial__stars {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

/* ---------- JOBS & COLLABORATION ---------- */
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}
.jobs__card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  transition: all var(--duration) var(--ease);
}
.jobs__card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}
.jobs__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(45, 90, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.jobs__card-icon i { width: 28px; height: 28px; color: var(--clr-primary); }
.jobs__card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.jobs__card p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.jobs__card ul {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.jobs__card li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.jobs__card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
}
@media (max-width: 480px) {
  .jobs__grid { grid-template-columns: 1fr; }
}

/* ---------- CONTACT FORM ---------- */
.contact__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact__form h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--duration) var(--ease);
  margin-bottom: 0.75rem;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
}
.contact__form textarea { resize: vertical; }
@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- LANGUAGE TOGGLE ---------- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.lang-toggle:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

/* ---------- BTN OUTLINE DARK ---------- */
.btn--outline-dark {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.btn--outline-dark:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.footer__bottom a { color: var(--clr-accent); }
.footer__bottom a:hover { color: var(--clr-accent-light); }
