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

/* =====================
   VARIABLES & RESET
   ===================== */
:root {
  --copper: #b87333;
  --copper-light: #d4956a;
  --copper-pale: #f5e8df;
  --dark: #1a2530;
  --dark-mid: #2c3e4a;
  --cream: #faf7f4;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* =====================
   NAVIGATION
   ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 115, 51, 0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); transition: color 0.3s;
}
.nav-links a:hover { color: var(--copper); }
.nav-shop {
  background: var(--dark) !important;
  color: white !important;
  padding: 0.4rem 1rem !important;
  border-radius: 2px;
}
.nav-shop:hover { background: var(--copper) !important; }
.nav-contact {
  color: var(--copper) !important;
  border: 1px solid var(--copper);
  padding: 0.4rem 1rem !important;
  border-radius: 2px;
}
.nav-contact:hover { background: var(--copper) !important; color: white !important; }
.nav-insta { display: flex !important; align-items: center; gap: 0.3rem; color: var(--copper) !important; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(184, 115, 51, 0.15);
  }
  .nav-links.open { display: flex; }
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.82rem;
}
footer a { color: var(--copper-light); text-decoration: none; }
footer a:hover { color: white; }
.footer-logo { margin-bottom: 1.2rem; }
.footer-logo img { height: 36px; opacity: 0.85; }
.footer-links {
  display: flex; justify-content: center;
  gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap;
}

/* =====================
   UTILITAIRES
   ===================== */
.section-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--copper); display: block; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--dark); margin-bottom: 2.5rem;
}
.section-title em { font-style: italic; color: var(--copper); }

.tag {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper); border: 1px solid rgba(184, 115, 51, 0.3);
  padding: 0.25rem 0.75rem; border-radius: 20px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.btn {
  display: inline-block;
  background: var(--dark); color: white;
  padding: 0.8rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn:hover { background: var(--copper); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--copper);
  color: var(--copper);
}
.btn-outline:hover { background: var(--copper); color: white; }

.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   LIGHTBOX
   ===================== */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center; justify-content: center;
  flex-direction: column; padding: 2rem;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 82vh;
  object-fit: contain; border-radius: 3px;
}
#lb-cap {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem; font-size: 0.85rem; letter-spacing: 0.1em;
}
#lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: white; font-size: 2.5rem;
  background: none; border: none; cursor: pointer; line-height: 1;
}

/* =====================
   PAGE HERO (Créations / Nous)
   ===================== */
.page-hero {
  padding: 9rem 2rem 5rem; text-align: center;
  background: linear-gradient(160deg, var(--cream) 0%, #ede5dc 100%);
}
.page-hero .hero-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--copper); border: 1px solid var(--copper);
  padding: 0.3rem 1rem; border-radius: 2px; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--dark); margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--copper); }
.page-hero p { color: var(--text-light); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* =====================
   INDEX — HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.45); display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,37,48,0.3) 0%, rgba(26,37,48,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 750px; margin: 0 auto; padding: 8rem 2rem 4rem;
}
.hero-icon {
  width: 130px; height: 130px;
  margin: 0 auto 2rem;
  animation: float 4s ease-in-out infinite;
}
.hero-icon img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(184, 115, 51, 0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--copper-light); border: 1px solid rgba(184, 115, 51, 0.5);
  padding: 0.3rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--copper-light); }
.hero p {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* INDEX — FEATURE CARDS */
.features {
  padding: 6rem 2rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.fcard {
  background: white; border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: 4px; overflow: hidden; transition: all 0.4s;
}
.fcard:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 40px rgba(184, 115, 51, 0.12);
  transform: translateY(-4px);
}
.fcard-img { height: 220px; overflow: hidden; }
.fcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fcard:hover .fcard-img img { transform: scale(1.06); }
.fcard-body { padding: 1.8rem; }
.fcard-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.fcard-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--dark); margin-bottom: 0.6rem;
}
.fcard-body p { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); }

/* INDEX — CTA STRIP */
.cta-strip {
  background: var(--dark); padding: 5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,115,51,0.12) 0%, transparent 70%);
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: white; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-strip p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-strip .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip .btn { background: var(--copper); }
.cta-strip .btn:hover { background: var(--copper-light); }
.cta-strip .btn-outline { border-color: rgba(255,255,255,0.35); color: white; }
.cta-strip .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* =====================
   CRÉATIONS — BANNIÈRE
   ===================== */
.banner { width: 100%; max-height: 440px; overflow: hidden; position: relative; }
.banner img { width: 100%; height: 440px; object-fit: cover; filter: brightness(0.75); display: block; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,37,48,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 3rem;
}
.banner-text p {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 0.4rem;
}
.banner-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: white;
}

/* CRÉATIONS — BLOCS */
.gallery-section { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }

.creation-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.creation-block.reverse { direction: rtl; }
.creation-block.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .creation-block,
  .creation-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.creation-visual { border-radius: 4px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.creation-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.creation-visual:hover img { transform: scale(1.04); }
.creation-visual .overlay-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(26,37,48,0.85); color: white;
  padding: 0.35rem 0.85rem; border-radius: 2px;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.creation-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--dark); margin-bottom: 1rem; line-height: 1.2;
}
.creation-info h2 em { font-style: italic; color: var(--copper); }
.creation-info p { font-size: 0.93rem; line-height: 1.85; color: var(--text-light); margin-bottom: 1.2rem; }

/* CRÉATIONS — GALERIES */
.gallery-grid { display: grid; gap: 1rem; }
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) {
  .gallery-grid.cols-3,
  .gallery-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}

.gallery-item { border-radius: 3px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.45s; }
.gallery-item.tall img { height: 320px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gi-overlay {
  position: absolute; inset: 0;
  background: rgba(26,37,48,0); transition: background 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gi-overlay { background: rgba(26,37,48,0.42); }
.gallery-item .gi-label {
  color: white; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: all 0.3s;
}
.gallery-item:hover .gi-label { opacity: 1; transform: translateY(0); }

.section-divider {
  border: none; border-top: 1px solid rgba(184, 115, 51, 0.15);
  max-width: 1200px; margin: 0 auto;
}

/* CRÉATIONS — CTA INSTAGRAM */
.insta-cta { background: var(--dark); padding: 5rem 2rem; text-align: center; }
.insta-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: white; margin-bottom: 1rem;
}
.insta-cta p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.insta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; padding: 0.85rem 2rem; border-radius: 4px;
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; transition: opacity 0.3s;
}
.insta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* =====================
   NOUS — ÉQUIPE
   ===================== */
.team-section { max-width: 1000px; margin: 0 auto; padding: 6rem 2rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.member-card {
  background: white; border: 1px solid rgba(184,115,51,0.12);
  border-radius: 4px; overflow: hidden; transition: all 0.4s;
}
.member-card:hover { box-shadow: 0 12px 50px rgba(184,115,51,0.12); transform: translateY(-3px); }
.member-card-top { position: relative; height: 240px; overflow: hidden; }
.member-card-top img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82); transition: transform 0.5s;
}
.member-card:hover .member-card-top img { transform: scale(1.04); }
.member-card-name {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,37,48,0.85) 0%, transparent 100%);
}
.member-card-name h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; color: white;
}
.member-card-name h2 em { font-style: italic; color: var(--copper-light); }
.member-card-name span {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-light); display: block; margin-top: 0.2rem;
}
.member-card-body { padding: 2rem 2rem 2.5rem; }
.member-card-body p { font-size: 0.93rem; line-height: 1.85; color: var(--text-light); }
.member-card-body p + p { margin-top: 0.8rem; }
.member-card-body .note { margin-top: 1rem; font-size: 0.82rem; font-style: italic; color: var(--copper); opacity: 0.8; }

/* NOUS — STORY */
.story { text-align: center; padding: 4rem 2rem; border-top: 1px solid rgba(184,115,51,0.12); }
.story-img { width: 100%; max-height: 320px; overflow: hidden; border-radius: 4px; margin-bottom: 3rem; }
.story-img img { width: 100%; height: 320px; object-fit: cover; filter: brightness(0.85); }
.story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--dark); margin-bottom: 1.2rem;
}
.story h2 em { font-style: italic; color: var(--copper); }
.story p { font-size: 0.93rem; line-height: 1.85; color: var(--text-light); max-width: 600px; margin: 0 auto 1.2rem; }

/* NOUS — VALEURS */
.values { background: var(--dark); padding: 5rem 2rem; text-align: center; }
.values h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: white; margin-bottom: 3rem;
}
.values h2 em { font-style: italic; color: var(--copper-light); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.value-item { text-align: center; }
.value-item .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: white; font-weight: 400; margin-bottom: 0.5rem;
}
.value-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
