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

:root {
  --dark: #0f0f0f;
  --light: #f7f5f2;
  --accent: #a8c08a;
  --gray: #888;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('/assets/images/chat-uploads/1776953511-cb3c05.jpg') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.2rem;
}

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: background .25s, color .25s;
  border-radius: 2px;
}
.btn:hover { background: var(--accent); color: var(--dark); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2.5rem;
  transition: background .35s;
}
nav.scrolled { background: rgba(15,15,15,.92); backdrop-filter: blur(8px); }
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--light);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── SECTION BASE ── */
section { padding: 6rem 1.5rem; }
.section-label {
  display: block;
  text-align: center;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-size: .95rem;
}

/* ── GALERIE ── */
#galerie { background: #141414; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid .item:nth-child(1) { grid-row: span 2; }
.gallery-grid .item:nth-child(5) { grid-column: span 2; }

.item {
  overflow: hidden;
  border-radius: 4px;
  background: #1e1e1e;
}
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.9);
  min-height: 220px;
}
.item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ── À PROPOS ── */
#apropos {
  background: var(--dark);
  display: flex;
  justify-content: center;
}
.about-wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}
.about-img {
  flex: 0 0 380px;
  border-radius: 4px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
}
.about-text { flex: 1; }
.about-text .section-label,
.about-text .section-title { text-align: left; }
.about-text p {
  color: rgba(247,245,242,.65);
  margin-bottom: 1.2rem;
  font-size: .98rem;
}
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--accent);
  display: block;
}
.stat-label { font-size: .78rem; color: var(--gray); letter-spacing: .1em; text-transform: uppercase; }

/* ── CONTACT ── */
#contact { background: #0c0c0c; }
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: rgba(247,245,242,.7);
  font-size: .97rem;
}
.contact-item svg { flex-shrink: 0; stroke: var(--accent); }
.contact-item a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--accent); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #080808;
  color: #444;
  font-size: .8rem;
  letter-spacing: .05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .item:nth-child(1) { grid-row: span 1; }
  .gallery-grid .item:nth-child(5) { grid-column: span 1; }
  .about-wrap { flex-direction: column; gap: 2rem; }
  .about-img { flex: none; width: 100%; }
  .about-img img { height: 280px; }
  .stats { gap: 1.2rem; }
}
