@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --creme: #FDF6F0;
  --rose: #D4A5A5;
  --brun: #3D2B1F;
  --or: #C8956C;
  --texte: #4A3728;
  --gris: #F5EDE6;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--creme);
  color: var(--texte);
  font-weight: 300;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #EDD9C8;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brun);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo span {
  color: var(--or);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--texte);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--or);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  background: linear-gradient(160deg, #F5E6D8 0%, #EDD9C8 40%, #D4B896 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--brun);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--or);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--brun);
  color: var(--creme);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--or);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--brun);
  color: var(--brun);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--brun);
  color: var(--creme);
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brun);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-text {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 600px;
  color: var(--texte);
}

/* ── GRILLE CRÉATIONS ── */
.creations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.creation-card {
  background: var(--gris);
  overflow: hidden;
}

.creation-card .img-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #EDD9C8, #D4B896);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.creation-card-body {
  padding: 1.5rem;
}

.creation-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brun);
  margin-bottom: 0.5rem;
}

.creation-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--texte);
}

/* ── BANDEAU VALEURS ── */
.valeurs {
  background: var(--brun);
  color: var(--creme);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.valeur h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--or);
  margin-bottom: 0.8rem;
}

.valeur p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* ── À PROPOS ── */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.apropos-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #EDD9C8, #C8956C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creme);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brun);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--texte);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: linear-gradient(135deg, #EDD9C8, #D4B896);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
footer {
  background: var(--brun);
  color: var(--creme);
  text-align: center;
  padding: 2.5rem;
}

footer .logo {
  color: var(--creme);
  display: block;
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }

  .apropos-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 1rem;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }
}
