/* Style généré automatiquement */
:root {
  --creme: #f5f0e8;
  --encre: #1a1612;
  --brun: #6b4f3a;
  --or: #b8903a;
  --gris: #8a8278;
  --ligne: rgba(107, 79, 58, 0.15);
  --vert: #3b6d11;
  --rouge: #a32d2d;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--encre);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--creme);
  border-bottom: 1px solid var(--ligne);
  z-index: 100;
  padding: 1rem 0;
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--encre);
}

.nav-logo em {
  font-style: normal;
  font-weight: 600;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--encre);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.nav-boutique {
  color: var(--or) !important;
  font-weight: 500;
}

.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--encre);
  transition: all 0.3s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── Menu mobile ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--creme);
  border-bottom: 1px solid var(--ligne);
  flex-direction: column;
  gap: 0;
  z-index: 99;
}

.mobile-menu a {
  padding: 1rem 2rem;
  text-decoration: none;
  color: var(--encre);
  border-bottom: 1px solid var(--ligne);
}

.mobile-menu.open {
  display: flex;
}

/* ── Hero ── */
#accueil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 2rem 80px;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-surtitre {
  font-size: 0.85rem;
  color: var(--gris);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-nom {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-nom em {
  font-style: italic;
  font-weight: 400;
}

.hero-sous {
  font-size: 1rem;
  color: var(--gris);
  margin-bottom: 1.5rem;
}

.hero-intro {
  color: var(--encre);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-or {
  display: inline-block;
  background: var(--or);
  color: var(--creme);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ligne);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gris);
  background: linear-gradient(135deg, var(--creme) 0%, var(--ligne) 100%);
}

/* ── Sections ── */
.section {
  padding: 80px 2rem;
  border-top: 1px solid var(--ligne);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.8rem;
  color: var(--gris);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-titre {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 300;
}

.section-titre em {
  font-style: italic;
  font-weight: 400;
}

.corps {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--encre);
  margin-bottom: 2rem;
}

.corps p {
  margin-bottom: 1rem;
}

/* ── Vidéo ── */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 2rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: var(--ligne);
  border-radius: 4px;
  color: var(--gris);
  margin-top: 2rem;
  gap: 1rem;
}

/* ── PDF ── */
.pdf-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--creme);
  border: 1px solid var(--ligne);
  border-radius: 4px;
  text-decoration: none;
  color: var(--encre);
  transition: all 0.3s;
  margin-top: 2rem;
}

.pdf-card:hover {
  border-color: var(--or);
}

.pdf-card-icon {
  flex-shrink: 0;
  color: var(--or);
}

.pdf-card-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pdf-card-sous {
  font-size: 0.85rem;
  color: var(--gris);
}

/* ── Actualités ── */
.actu-liste {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.actu-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ligne);
}

.actu-date {
  font-size: 0.85rem;
  color: var(--gris);
  text-transform: capitalize;
}

.actu-titre {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.actu-corps {
  font-size: 0.95rem;
  color: var(--encre);
  margin-bottom: 1rem;
}

.actu-lien {
  color: var(--or);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.actu-lien:hover {
  color: var(--brun);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--ligne);
  background: var(--creme);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--or);
}

.btn-submit {
  background: var(--or);
  color: var(--creme);
  padding: 0.75rem 2rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

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

/* ── Boutique ── */
.page-header {
  padding: 80px 2rem 40px;
  max-width: 1080px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ligne);
  margin-bottom: 3rem;
}

.u-label {
  font-size: 0.8rem;
  color: var(--gris);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-header-titre {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.page-header-titre em {
  font-style: italic;
  font-weight: 400;
}

.page-header-sous {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.6;
}

.produits-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.carte {
  border: 1px solid var(--ligne);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.carte:hover {
  border-color: var(--or);
}

.carte-visuel {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--creme) 0%, var(--ligne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris);
  position: relative;
  overflow: hidden;
}

.carte-visuel[data-initiale]::before {
  content: attr(data-initiale);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  opacity: 0.3;
}

.carte-corps {
  padding: 1.5rem;
  flex: 1;
}

.carte-cat {
  font-size: 0.75rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.carte-titre {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.carte-desc {
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.5;
}

.carte-pied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-top: 1px solid var(--ligne);
  background: var(--creme);
}

.carte-prix {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.btn-achat {
  background: var(--or);
  color: var(--creme);
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.btn-achat.loading {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Info bande ── */
.info-bande {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  background: var(--creme);
  border-top: 1px solid var(--ligne);
}

.info-bloc {
  display: flex;
  gap: 1.5rem;
}

.info-ico {
  flex-shrink: 0;
  color: var(--or);
}

.info-titre {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-texte {
  font-size: 0.9rem;
  color: var(--gris);
}

/* ── Révélation au scroll ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--encre);
  color: var(--creme);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: bottom 0.3s;
  z-index: 1000;
}

.toast.visible {
  bottom: 2rem;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--ligne);
  padding: 2rem;
  background: var(--creme);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gris);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  #accueil {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 80px;
  }

  .hero-nom {
    font-size: 2.5rem;
  }

  .section-titre {
    font-size: 1.8rem;
  }

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

  .actu-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .page-header {
    padding: 60px 2rem 30px;
  }
}

@media (max-width: 480px) {
  .hero-nom {
    font-size: 2rem;
  }

  .section-titre {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
