@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500&display=swap');

:root {
  --or: #c9a84c;
  --or-clair: #e8d5a3;
  --brun: #3d2b1f;
  --brun-clair: #6b4c35;
  --creme: #f8f3ec;
  --vert-mousse: #4a5940;
  --blanc: #fdfaf5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--blanc);
  color: var(--brun);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--or-clair);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo svg { width: 44px; height: 44px; }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brun);
  line-height: 1.2;
}
.nav-brand span { display: block; font-weight: 300; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--or); text-transform: uppercase; }

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none;
  color: var(--brun-clair);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav ul a:hover { color: var(--or); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(74,89,64,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--blanc);
}

.hero-logo { margin-bottom: 2.5rem; }
.hero-logo svg { width: 160px; height: 160px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--brun);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero h1 em { font-style: italic; color: var(--or); }

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--brun-clair);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-desc {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--brun-clair);
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1.5px solid var(--or);
  color: var(--or);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--or); color: var(--blanc); }

.scroll-hint {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.7;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; } }

/* ── SECTIONS COMMUNES ── */
section { padding: 6rem 2rem; }
.container { max-width: 1050px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--brun);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }
.divider {
  width: 60px; height: 1px;
  background: var(--or);
  margin-bottom: 2.5rem;
}

/* ── PRÉSENTATION ── */
#presentation { background: var(--creme); }

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

.presentation-img {
  position: relative;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--or-clair) 0%, var(--creme) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--brun-clair);
  text-transform: uppercase;
  border: 1px solid var(--or-clair);
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

.frame-deco {
  position: absolute;
  top: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--or);
  pointer-events: none;
  z-index: -1;
}

.presentation-text p { color: var(--brun-clair); margin-bottom: 1.2rem; font-size: 1rem; }
.presentation-text p strong { color: var(--brun); font-weight: 500; }

.values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}
.value-item p { font-size: 0.9rem; color: var(--brun-clair); }
.value-item strong { color: var(--brun); display: block; font-weight: 500; font-size: 0.95rem; }

/* ── FOURNISSEURS ── */
#fournisseurs { background: var(--blanc); }

.fournisseurs-intro {
  max-width: 600px;
  color: var(--brun-clair);
  margin-bottom: 3.5rem;
  font-size: 1rem;
}

.fournisseurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.fournisseur-card {
  border: 1px solid var(--or-clair);
  padding: 2rem;
  background: var(--blanc);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.fournisseur-card:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.12); transform: translateY(-4px); }

.fournisseur-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 40px;
  background: var(--or);
}

.card-picto { font-size: 2rem; margin-bottom: 1rem; }
.card-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 0.3rem;
}
.card-lieu {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
}
.card-desc { font-size: 0.9rem; color: var(--brun-clair); }

/* ── CRÉATIONS ── */
#creations { background: var(--creme); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.galerie-item {
  background: var(--blanc);
  border: 1px solid var(--or-clair);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.galerie-item:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(61,43,31,0.1); }

.galerie-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--or-clair) 0%, var(--creme) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brun-clair);
  text-transform: uppercase;
  overflow: hidden;
}
.galerie-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.galerie-caption { padding: 1.2rem 1.4rem; }
.galerie-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or-clair);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
}
.galerie-titre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 0.3rem;
}
.galerie-desc { font-size: 0.82rem; color: var(--brun-clair); }

.galerie-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--brun);
  border-color: var(--brun);
  padding: 2rem;
  text-align: center;
}
.galerie-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--creme);
  line-height: 1.3;
}

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

/* ── CONTACT ── */
#contact { background: var(--brun); color: var(--creme); }
#contact .section-title { color: var(--creme); }
#contact .section-label { color: var(--or); }

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

.contact-text p { color: var(--or-clair); font-size: 1rem; margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-info a { color: var(--or-clair); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.contact-info a:hover { color: var(--or); }

form { display: flex; flex-direction: column; gap: 1.2rem; }
form input, form textarea, form select {
  background: rgba(253,250,245,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--creme);
  padding: 0.9rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
form input::placeholder, form textarea::placeholder { color: rgba(232,213,163,0.4); }
form input:focus, form textarea:focus, form select:focus { border-color: var(--or); }
form select { cursor: pointer; }
form select option { background: var(--brun); }
form textarea { min-height: 130px; resize: vertical; }
.btn-send {
  background: var(--or);
  color: var(--brun);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  align-self: flex-start;
}
.btn-send:hover { background: var(--or-clair); }

/* ── FOOTER ── */
footer {
  background: #2a1d13;
  color: var(--or-clair);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
footer a { color: var(--or); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { gap: 1.2rem; }
  .presentation-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .presentation-img { order: -1; }
  .frame-deco { display: none; }
  nav { padding: 0.8rem 1.2rem; }
}
