/* ============================================================
   MANHÉO — Feuille de style principale
   Charte : Lin #F2EDE5 · Noir #0D0D0D · Bronze #8B5E2A
   Typo : Cormorant Garamond (titres) · DM Sans (corps)
   ============================================================ */

:root {
  --noir:       #0D0D0D;
  --lin:        #F2EDE5;
  --sable:      #E8E0D4;
  --bronze:     #8B5E2A;
  --bronze-cl:  #C8884E;
  --bronze-fonce: #6B3F12;
  --texte:      #1A1714;
  --texte-mu:   rgba(26,23,20,0.55);
  --blanc-mu:   rgba(242,237,229,0.55);
  --radius:     2px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--lin);
  color: var(--texte);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- TYPOGRAPHIE ---- */
.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.eyebrow-light { color: var(--bronze-cl); }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

/* ---- BOUTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--bronze);
  color: var(--lin);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--bronze-cl); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--bronze-cl);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(200,136,78,0.4);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--bronze-cl); color: var(--lin); background: rgba(200,136,78,0.15); }

/* ---- LIGNE BRONZE ---- */
.bronze-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze) 30%, var(--bronze-cl) 50%, var(--bronze) 70%, transparent);
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(242,237,229,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(139,94,42,0.2);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,13,13,0.08); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-monogram { width: 36px; height: 36px; flex-shrink: 0; }
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.2em;
  color: var(--bronze-fonce);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.nav-tagline {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(107,63,18,0.5);
  text-transform: uppercase;
  font-weight: 300;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-mu);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 0.5px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  padding: 8px 18px;
  font-weight: 400;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--bronze); color: var(--lin); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--texte);
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--lin);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mm-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--texte);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mm-link:hover { color: var(--bronze); }
.mm-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  padding: 10px 24px;
  margin-top: 1rem;
}

/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-left {
  background: var(--noir);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-m {
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px;
  font-weight: 300;
  color: rgba(139,94,42,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-left .eyebrow { color: var(--bronze); margin-bottom: 1.2rem; }

.hero-h1 {
  font-size: 42px;
  color: var(--lin);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--bronze-cl); }

.hero-sub {
  font-size: 13px;
  color: var(--blanc-mu);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero droite — grille 2×2 */
.hero-right {
  background: var(--noir);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 1px;
  background: rgba(139,94,42,0.2);
}
.hero-img-cell {
  position: relative;
  overflow: hidden;
  background: #1a1714;
}
.hero-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.7s ease, opacity var(--transition);
}
.hero-img-cell:hover img { transform: scale(1.04); opacity: 1; }
.img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(13,13,13,0.8));
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.7);
}

/* ========== STRIP ========== */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid rgba(139,94,42,0.15);
}
.strip-item {
  padding: 2.5rem 2.5rem;
  border-right: 0.5px solid rgba(139,94,42,0.15);
}
.strip-item:last-child { border-right: none; }
.strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: rgba(139,94,42,0.18);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.strip-text {
  font-size: 12px;
  color: var(--texte-mu);
  line-height: 1.75;
  font-weight: 300;
}

/* ========== SECTION ========== */
.section { padding: 4rem 3rem; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.section-title {
  font-size: 30px;
  color: var(--texte);
}
.section-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 0.5px solid rgba(139,94,42,0.4);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.section-link:hover { opacity: 0.7; }

/* ========== PRODUITS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(139,94,42,0.12);
}

.product-card {
  background: var(--lin);
  overflow: hidden;
  transition: background var(--transition);
}
.product-card:hover { background: #ede8df; }

.product-img {
  height: 220px;
  overflow: hidden;
  background: var(--sable);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-info { padding: 1.2rem 1.4rem 1.8rem; }
.product-cat {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 12px;
  color: var(--texte-mu);
  line-height: 1.65;
  font-weight: 300;
}

/* ========== SKETCH PROCESSUS ========== */
.sketch-section {
  background: var(--noir);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sketch-title {
  font-size: 36px;
  color: var(--lin);
  margin-bottom: 1.2rem;
}
.sketch-title em { font-style: italic; color: var(--bronze-cl); }

.sketch-body {
  font-size: 13px;
  color: var(--blanc-mu);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}

.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: rgba(200,136,78,0.35);
  font-weight: 300;
  min-width: 28px;
  line-height: 1.2;
}
.step-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--lin);
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}
.step-desc {
  font-size: 11px;
  color: rgba(242,237,229,0.4);
  line-height: 1.65;
  font-weight: 300;
}

.sketch-visual img {
  border-radius: var(--radius);
  opacity: 0.92;
}
.sketch-caption {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,229,0.3);
  text-align: right;
}

/* ========== COORDINATION ========== */
.coordination {
  background: var(--sable);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tag-bronze {
  display: inline-block;
  background: rgba(139,94,42,0.1);
  border: 0.5px solid rgba(139,94,42,0.3);
  color: var(--bronze-fonce);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 1.2rem;
}

.coord-title {
  font-size: 30px;
  color: var(--texte);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.coord-body {
  font-size: 13px;
  color: var(--texte-mu);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.coord-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 0.5px solid rgba(139,94,42,0.3);
  color: var(--bronze-fonce);
  background: rgba(242,237,229,0.6);
}

.coord-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.coord-img-cell {
  overflow: hidden;
  background: var(--sable);
}
.coord-img-cell img {
  height: 150px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.6s ease, opacity var(--transition);
}
.coord-img-cell:hover img { transform: scale(1.04); opacity: 1; }
.img-label-light {
  display: block;
  padding: 6px 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-mu);
  background: var(--sable);
}

/* ========== CITATION ========== */
.citation {
  padding: 3rem 3rem;
  text-align: center;
  border-top: 0.5px solid rgba(139,94,42,0.15);
  border-bottom: 0.5px solid rgba(139,94,42,0.15);
  background: var(--lin);
}
.citation-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--texte);
  max-width: 620px;
  margin: 0 auto 1rem;
  line-height: 1.55;
}
.citation-author {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--noir);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: 30px;
  color: var(--lin);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.contact-body {
  font-size: 13px;
  color: var(--blanc-mu);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  min-width: 60px;
  padding-top: 2px;
  font-weight: 400;
}
.contact-row dd {
  font-size: 13px;
  color: rgba(242,237,229,0.7);
  line-height: 1.6;
  font-weight: 300;
}
.contact-row dd a { color: rgba(242,237,229,0.7); transition: color var(--transition); }
.contact-row dd a:hover { color: var(--bronze-cl); }

/* FORMULAIRE */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(242,237,229,0.06);
  border: 0.5px solid rgba(242,237,229,0.15);
  color: var(--lin);
  padding: 13px 14px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(242,237,229,0.3); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: rgba(200,136,78,0.5); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select { color: rgba(242,237,229,0.5); }
.contact-form select option { background: #1a1714; color: var(--lin); }
.form-btn {
  background: var(--bronze);
  color: var(--lin);
  border: none;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition);
  font-weight: 400;
}
.form-btn:hover { background: var(--bronze-cl); }

/* ========== FOOTER ========== */
.footer {
  background: var(--noir);
  border-top: 0.5px solid rgba(139,94,42,0.2);
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(139,94,42,0.6);
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(242,237,229,0.2);
  text-transform: uppercase;
}
.footer-center p,
.footer-right p,
.footer-right a {
  font-size: 11px;
  color: rgba(242,237,229,0.25);
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.footer-right { display: flex; flex-direction: column; }
.footer-right a { transition: color var(--transition); }
.footer-right a:hover { color: var(--bronze-cl); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left .eyebrow  { animation: fadeUp 0.7s ease 0.1s both; }
.hero-h1             { animation: fadeUp 0.7s ease 0.2s both; }
.hero-sub            { animation: fadeUp 0.7s ease 0.3s both; }
.hero-btns           { animation: fadeUp 0.7s ease 0.4s both; }

/* Révélation au scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .hero-h1 { font-size: 34px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3rem 2rem; }
  .sketch-section, .coordination, .contact-section { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 1rem 1.5rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-h1 { font-size: 30px; }
  .hero-right { min-height: 280px; }

  .strip { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 0.5px solid rgba(139,94,42,0.15); }
  .strip-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr; }

  .sketch-section { grid-template-columns: 1fr; gap: 2rem; }
  .coordination   { grid-template-columns: 1fr; gap: 2rem; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-left { padding: 2.5rem 1.2rem; }
  .hero-h1 { font-size: 26px; }
  .citation-text { font-size: 18px; }
  .coord-grid { grid-template-columns: 1fr; }
}

/* ========== NOUVELLES SECTIONS ========== */

/* Section intro texte */
.section-intro {
  font-size: 14px;
  color: var(--texte-mu);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* Feature image pleine largeur */
.feature-img {
  position: relative;
  margin-bottom: 1px;
  overflow: hidden;
  height: 480px;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s ease;
}
.feature-img:hover img { transform: scale(1.03); }
.feature-caption {
  position: absolute;
  bottom: 0; left: 0;
  padding: 2.5rem 3rem;
  background: linear-gradient(transparent, rgba(13,13,13,0.85));
  max-width: 480px;
}
.feature-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--lin);
  margin-bottom: 0.5rem;
}
.feature-caption p {
  font-size: 13px;
  color: rgba(242,237,229,0.7);
  line-height: 1.7;
  font-weight: 300;
}
.feature-caption .eyebrow { color: var(--bronze-cl); margin-bottom: 0.5rem; }

/* Galerie 3 colonnes */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(139,94,42,0.12);
  margin-bottom: 1px;
}
.gallery-card { background: var(--lin); overflow: hidden; }
.gallery-card:hover { background: #ede8df; }
.gallery-img { height: 260px; overflow: hidden; background: var(--sable); }
.gallery-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.gallery-card:hover .gallery-img img { transform: scale(1.05); }
.gallery-info { padding: 1.4rem 1.6rem 2rem; }

/* Duo côte à côte */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(139,94,42,0.12);
}
.duo-card { background: var(--lin); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.duo-img { overflow: hidden; }
.duo-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.duo-card:hover .duo-img img { transform: scale(1.04); }
.duo-info { padding: 2rem 2rem; display:flex; flex-direction:column; justify-content:center; }
.duo-info .product-name { font-size:20px; margin-bottom:0.5rem; }
.duo-info .product-desc { font-size:13px; }

/* Section sombre mobilier */
.section-dark {
  background: var(--noir);
  padding: 4rem 3rem;
}
.section-dark .section-header { margin-bottom: 2.5rem; }
.product-card-dark {
  background: rgba(242,237,229,0.04) !important;
  border: 0.5px solid rgba(139,94,42,0.15);
}
.product-card-dark:hover { background: rgba(242,237,229,0.07) !important; }

@media (max-width: 1024px) {
  .feature-img { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .duo-card { grid-template-columns: 1fr; }
  .duo-img { height: 220px; }
}
@media (max-width: 768px) {
  .feature-img { height: 260px; }
  .feature-caption { padding: 1.5rem; }
  .feature-caption h3 { font-size: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .duo-grid { grid-template-columns: 1fr; }
  .section-dark { padding: 3rem 1.5rem; }
}

/* ========== SHOWROOM ========== */
.showroom-section { background: var(--lin); }

.showroom-duo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: rgba(139,94,42,0.12);
  margin-bottom: 1px;
}

.showroom-main {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.showroom-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.showroom-main:hover img { transform: scale(1.03); }
.showroom-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(13,13,13,0.82));
}
.showroom-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  color: var(--lin); margin-bottom: 0.4rem;
}
.showroom-overlay p {
  font-size: 13px; color: rgba(242,237,229,0.7);
  line-height: 1.7; font-weight: 300;
  max-width: 420px;
}

.showroom-side { background: var(--lin); overflow: hidden; display: flex; flex-direction: column; }
.showroom-side img { width:100%; height: 300px; object-fit: cover; transition: transform 0.6s ease; }
.showroom-side:hover img { transform: scale(1.04); }
.showroom-side-info { padding: 1.5rem 1.8rem; flex: 1; }

.showroom-trio {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(139,94,42,0.12);
  margin-bottom: 2rem;
}
.showroom-card { background: var(--lin); overflow: hidden; }
.showroom-card:hover { background: #ede8df; }
.showroom-img { height: 240px; overflow: hidden; background: var(--sable); }
.showroom-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.showroom-card:hover .showroom-img img { transform: scale(1.05); }
.showroom-card-info { padding: 1.4rem 1.6rem 2rem; }

.showroom-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--sable);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.showroom-cta p {
  font-size: 13px;
  color: var(--texte-mu);
  font-weight: 300;
  font-style: italic;
}

/* Update nav to include showroom */
@media (max-width: 1024px) {
  .showroom-duo { grid-template-columns: 1fr; }
  .showroom-main { height: 360px; }
  .showroom-trio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .showroom-trio { grid-template-columns: 1fr; }
  .showroom-cta { flex-direction: column; text-align: center; }
}

/* ========== MATERIAUX SECTION ========== */
.materiaux-section {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.materiaux-visual { overflow: hidden; }
.materiaux-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s ease;
}
.materiaux-section:hover .materiaux-visual img { transform: scale(1.03); }
.materiaux-text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.materiaux-title {
  font-size: 36px;
  color: var(--lin);
  margin-bottom: 1.5rem;
}
.materiaux-body {
  font-size: 13px;
  color: var(--blanc-mu);
  line-height: 1.85;
  font-weight: 300;
}

@media (max-width: 768px) {
  .materiaux-section { grid-template-columns: 1fr; }
  .materiaux-visual { height: 280px; }
  .materiaux-text { padding: 2.5rem 1.5rem; }
}

/* ========== BANNER OUVERTURE SHOWROOM ========== */
.showroom-banner {
  background: var(--noir);
  border-bottom: 0.5px solid rgba(200,136,78,0.3);
  padding: 1.4rem 3rem;
}
.showroom-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.showroom-banner-icon {
  color: var(--bronze-cl);
  font-size: 12px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.showroom-banner-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}
.showroom-banner-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-cl);
  background: rgba(200,136,78,0.12);
  border: 0.5px solid rgba(200,136,78,0.3);
  padding: 4px 10px;
  white-space: nowrap;
}
.showroom-banner-text strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--lin);
  letter-spacing: 0.02em;
}
.showroom-banner-sub {
  font-size: 13px;
  color: rgba(242,237,229,0.45);
  font-weight: 300;
}
.showroom-banner-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-cl);
  border: 0.5px solid rgba(200,136,78,0.4);
  padding: 9px 20px;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.showroom-banner-cta:hover { background: var(--bronze); color: var(--lin); border-color: var(--bronze); }

@media (max-width: 768px) {
  .showroom-banner { padding: 0.8rem 1.5rem; }
  .showroom-banner-inner { gap: 1rem; flex-wrap: wrap; }
  .showroom-banner-sub { display: none; }
  .showroom-banner-text { gap: 0.5rem; }
}

/* ========== RDV PRESCRIPTEURS ========== */
.rdv-section {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 700px;
}

.rdv-left {
  padding: 5rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0.5px solid rgba(139,94,42,0.2);
}

.rdv-title {
  font-size: 42px;
  color: var(--lin);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.rdv-title em { font-style: italic; color: var(--bronze-cl); }

.rdv-body {
  font-size: 13px;
  color: var(--blanc-mu);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 440px;
}

.rdv-event {
  margin: 2rem 0;
  border: 0.5px solid rgba(139,94,42,0.25);
  background: rgba(139,94,42,0.05);
}
.rdv-event-header {
  padding: 0.8rem 1.2rem;
  border-bottom: 0.5px solid rgba(139,94,42,0.2);
}
.rdv-event-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-cl);
}
.rdv-event-details {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rdv-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rdv-detail-icon {
  color: var(--bronze);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}
.rdv-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--lin);
  margin-bottom: 2px;
}
.rdv-detail span {
  font-size: 11px;
  color: rgba(242,237,229,0.45);
  font-weight: 300;
  line-height: 1.5;
}

.rdv-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 0.5rem; }

/* Droite — cartes */
.rdv-right {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(139,94,42,0.08);
  justify-content: center;
}

.rdv-card {
  background: rgba(242,237,229,0.03);
  border: 0.5px solid rgba(139,94,42,0.15);
  padding: 1.5rem 1.8rem;
  transition: background var(--transition);
}
.rdv-card:hover { background: rgba(242,237,229,0.06); }

.rdv-card-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: rgba(200,136,78,0.25);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.rdv-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--lin);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.rdv-card-text {
  font-size: 12px;
  color: rgba(242,237,229,0.45);
  line-height: 1.7;
  font-weight: 300;
}

.rdv-card-highlight {
  background: rgba(139,94,42,0.1) !important;
  border-color: rgba(139,94,42,0.35) !important;
  position: relative;
}
.rdv-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: rgba(200,136,78,0.2);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}
.rdv-card-text-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--lin);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.rdv-card-sig {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

@media (max-width: 1024px) {
  .rdv-left { padding: 3rem 2rem; }
  .rdv-right { padding: 3rem 2rem; }
  .rdv-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .rdv-section { grid-template-columns: 1fr; }
  .rdv-left { border-right: none; border-bottom: 0.5px solid rgba(139,94,42,0.2); padding: 3rem 1.5rem; }
  .rdv-right { padding: 2.5rem 1.5rem; }
  .rdv-title { font-size: 28px; }
}


/* === GALERIE LIGHTBOX MANHÉO === */
.galerie-lightbox-section {
  background: var(--lin, #f2ede5);
}
.lightbox-masonry {
  columns: 4 240px;
  column-gap: 14px;
  margin-top: 2.5rem;
}
.lightbox-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 2px;
}
.lightbox-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}
.lightbox-card:hover img {
  transform: scale(1.035);
  filter: brightness(.78);
}
.lightbox-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: linear-gradient(to top, rgba(12,10,8,.78), rgba(12,10,8,0));
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.lightbox-card:hover .lightbox-card-overlay {
  opacity: 1;
  transform: translateY(0);
}
.lightbox-card-overlay strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
}
.lightbox-card-overlay em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  color: rgba(255,255,255,.72);
}
.mh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8,7,6,.94);
  backdrop-filter: blur(10px);
  padding: 56px 72px;
}
.mh-lightbox.open { display: flex; }
.mh-lightbox-figure {
  width: 100%;
  max-width: 1480px;
  max-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mh-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}
.mh-lightbox-figure figcaption {
  color: #f2ede5;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mh-lightbox-figure figcaption strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
}
.mh-lightbox-figure figcaption span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(200,136,78,.88);
}
.mh-lightbox-close,
.mh-lightbox-nav {
  position: fixed;
  border: 1px solid rgba(200,136,78,.36);
  background: rgba(15,13,11,.45);
  color: #f2ede5;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.mh-lightbox-close:hover,
.mh-lightbox-nav:hover { background: rgba(200,136,78,.18); border-color: rgba(200,136,78,.72); }
.mh-lightbox-close {
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}
.mh-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 74px;
  font-size: 56px;
  font-family: 'Cormorant Garamond', serif;
  line-height: .8;
}
.mh-lightbox-prev { left: 18px; }
.mh-lightbox-next { right: 18px; }
body.mh-lightbox-lock { overflow: hidden; }
@media (max-width: 768px) {
  .lightbox-masonry { columns: 2 150px; column-gap: 10px; }
  .lightbox-card { margin-bottom: 10px; }
  .mh-lightbox { padding: 54px 14px 28px; }
  .mh-lightbox-nav { width: 40px; height: 56px; font-size: 40px; }
  .mh-lightbox-prev { left: 6px; }
  .mh-lightbox-next { right: 6px; }
  .mh-lightbox-figure figcaption strong { font-size: 22px; }
}


/* Section premium professionnels / prescripteurs */
.manheo-pro-section {
  background: linear-gradient(135deg, #15110e 0%, #241912 52%, #0f0d0b 100%);
  color: var(--lin);
  padding: 110px 7vw 95px;
  position: relative;
  overflow: hidden;
}
.manheo-pro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(200,136,78,.22), transparent 34%), radial-gradient(circle at 85% 80%, rgba(255,255,255,.06), transparent 28%);
  pointer-events: none;
}
.manheo-pro-kicker {
  position: relative;
  z-index: 1;
  color: var(--bronze-cl);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.manheo-pro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, .7fr) minmax(240px, .7fr);
  gap: 28px;
  align-items: stretch;
}
.manheo-pro-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 82px);
  line-height: .92;
  font-weight: 300;
  margin: 0 0 26px;
  max-width: 880px;
}
.manheo-pro-intro p {
  color: rgba(242,237,229,.78);
  font-size: 17px;
  line-height: 1.75;
  max-width: 780px;
  margin: 0 0 16px;
}
.manheo-pro-card {
  border: 1px solid rgba(200,136,78,.35);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.manheo-pro-card span {
  color: var(--bronze-cl);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 14px;
}
.manheo-pro-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 16px;
}
.manheo-pro-card p {
  color: rgba(242,237,229,.74);
  line-height: 1.6;
  margin: 0;
}
.manheo-pro-card-event { background: rgba(200,136,78,.12); }
.manheo-capabilities {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(200,136,78,.22);
  background: rgba(200,136,78,.22);
}
.manheo-capabilities article {
  background: rgba(15,13,11,.82);
  padding: 34px 28px;
}
.manheo-capabilities h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 12px;
}
.manheo-capabilities p {
  color: rgba(242,237,229,.7);
  line-height: 1.65;
  margin: 0;
}
.manheo-pro-quote {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(200,136,78,.32);
  padding-top: 34px;
}
.manheo-pro-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}
@media (max-width: 1080px) {
  .manheo-pro-grid { grid-template-columns: 1fr; }
  .manheo-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .manheo-pro-quote { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .manheo-pro-section { padding: 82px 22px 72px; }
  .manheo-capabilities { grid-template-columns: 1fr; }
  .manheo-pro-card { min-height: auto; }
}


/* === MANHÉO — PIÈCES D’ORIGINE === */
.section-origines {
  background: linear-gradient(180deg, #f4efe7 0%, #ebe1d3 100%);
  position: relative;
  overflow: hidden;
}
.section-origines::before {
  content: "M";
  position: absolute;
  right: -4vw;
  top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34vw;
  line-height: .7;
  color: rgba(77, 48, 26, .045);
  pointer-events: none;
}
.origine-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
  margin-top: 56px;
  border: 1px solid rgba(84, 54, 29, .18);
  background: #19130f;
  cursor: zoom-in;
}
.origine-feature-img { min-height: 560px; overflow: hidden; }
.origine-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.origine-feature:hover .origine-feature-img img { transform: scale(1.035); }
.origine-feature-text {
  padding: clamp(34px, 5vw, 72px);
  color: var(--lin);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.origine-feature-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: .92;
  font-weight: 300;
  margin: 18px 0 24px;
}
.origine-feature-text p { color: rgba(242,237,229,.78); line-height: 1.75; font-size: 17px; }
.origine-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.origine-list li { color: rgba(242,237,229,.84); border-top: 1px solid rgba(200,136,78,.22); padding-top: 12px; }
.origines-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(84, 54, 29, .22);
  border: 1px solid rgba(84, 54, 29, .22);
}
.origine-card {
  background: #fbf7ef;
  cursor: zoom-in;
  overflow: hidden;
}
.origine-card img { width: 100%; height: 340px; object-fit: cover; display: block; filter: saturate(.96) contrast(1.02); transition: transform .7s ease; }
.origine-card:hover img { transform: scale(1.045); }
.origine-card div { padding: 28px 26px 32px; }
.origine-card span { display: block; color: var(--bronze); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 12px; }
.origine-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; line-height: 1; font-weight: 300; margin: 0 0 12px; color: #1a130e; }
.origine-card p { margin: 0; color: rgba(26,19,14,.66); line-height: 1.62; }
.origines-manifeste {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  max-width: 980px;
  border-left: 1px solid var(--bronze);
  padding-left: clamp(24px, 4vw, 54px);
}
.origines-manifeste p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 300;
  color: #211711;
  margin: 0 0 18px;
}
.origines-manifeste p + p { font-family: 'DM Sans', sans-serif; font-size: 17px; line-height: 1.7; color: rgba(26,19,14,.68); max-width: 760px; }
@media (max-width: 1080px) {
  .origine-feature { grid-template-columns: 1fr; }
  .origine-feature-img { min-height: 420px; }
  .origines-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .origines-grid { grid-template-columns: 1fr; }
  .origine-card img { height: 300px; }
  .origine-feature-img { min-height: 340px; }
}

/* ========== SIGNATURE MANHÉO ========== */
.manheo-signature-section {
  background: var(--noir);
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  border-top: 0.5px solid rgba(139,94,42,0.2);
}
.signature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--lin);
  line-height: 1.1;
  margin-top: 0.5rem;
}
.signature-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
.signature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.signature-icon {
  color: var(--bronze-cl);
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}
.signature-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--lin);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.signature-item p {
  font-size: 12px;
  color: var(--blanc-mu);
  line-height: 1.75;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .manheo-signature-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 2rem; }
  .signature-right { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 768px) {
  .manheo-signature-section { padding: 3rem 1.5rem; }
  .signature-title { font-size: 28px; }
}

/* HERO MANIFESTE */
.hero-manifeste {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242,237,229,0.45);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(139,94,42,0.25);
}

/* HERO GENESE */
.hero-genese {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(139,94,42,0.25);
}
.hero-genese-titre {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze-cl);
  margin-bottom: 1rem;
}
.hero-genese p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242,237,229,0.75);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 0.75rem;
}
.hero-genese-sig {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,136,78,0.7);
  margin-top: 1rem;
}

/* HERO LOGO LARGE */
.hero-logo-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo-large img {
  width: auto;
  height: 320px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(160,99,42,0.6)) drop-shadow(0 0 5px rgba(200,136,78,0.35)) brightness(1.2);
}
