/* =========================================
   O'Belles Fleurs — CSS Mobile-First
   Base = mobile · min-width pour tablet/desktop
   ========================================= */

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

/* --- Variables --- */
:root {
  --beige-light: #FAF7F2;
  --beige:       #F4EEE4;
  --beige-mid:   #E8DDD0;
  --beige-dark:  #D4C5B0;
  --green:       #7C9B7F;
  --green-dark:  #5A7A5E;
  --rose:        #C09A8C;
  --rose-light:  #EDD8D2;
  --gold:        #C9A96E;
  --gold-light:  #EAD9B4;
  --dark:        #111010;
  --text:        #3A302B;
  --text-soft:   #7A6A60;
  --white:       #FDFAF7;
  --transition:  0.3s ease;

  --nav-h:       64px;
  --container-px: 1.25rem;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  /* Espace pour la barre sticky mobile */
  padding-bottom: 64px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 8vw, 4.8rem); }
h2 { font-size: clamp(1.7rem, 5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

/* --- Helpers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.text-center  { text-align: center; }
.text-soft    { color: var(--text-soft); }

.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.divider.center { margin: 1.2rem auto; }

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  min-height: 48px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus { background: var(--green-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--beige-dark);
}
.btn-outline:hover, .btn-outline:focus { border-color: var(--green); color: var(--green); }

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}
.btn-light:hover, .btn-light:focus { background: var(--beige-light); }

/* --- Image placeholders --- */
.photo-wrap {
  overflow: hidden;
  position: relative;
  background: var(--beige-mid);
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-rose   { background: linear-gradient(145deg, #EDD8D2 0%, #D4C5B0 60%, #C9A99A 100%); }
.ph-green  { background: linear-gradient(145deg, #D8E8DA 0%, #B5CEB8 60%, #7C9B7F 100%); }
.ph-beige  { background: linear-gradient(145deg, #F0E8DC 0%, #D4C5B0 60%, #C5B098 100%); }
.ph-warm   { background: linear-gradient(145deg, #F0DDD5 0%, #DCBE9A 50%, #C9A070 100%); }
.ph-sage   { background: linear-gradient(160deg, #E4EDE0 0%, #C8DACC 60%, #A5C2AA 100%); }
.ph-blush  { background: linear-gradient(145deg, #F5E4DF 0%, #E8C5BD 60%, #D4A096 100%); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--beige-mid);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 1px 20px rgba(58,48,43,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-logo:hover .nav-brand-name { color: var(--green); }

/* Menu mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay mobile */
.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 199;
}
.nav-links.open { display: flex; }
.nav-links li { width: 100%; text-align: center; }
.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--beige-mid);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: var(--beige-light); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  margin-top: 1rem;
  min-height: 52px;
}
.nav-links .nav-cta:hover { background: var(--green-dark) !important; }

/* =====================================================
   INFO STRIP
   ===================================================== */
.info-strip {
  background: var(--green);
  color: var(--white);
  padding: 0;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem var(--container-px);
  font-size: 0.83rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.info-strip-item:last-child { border-bottom: none; }
.info-strip-item strong { font-weight: 600; }
.info-strip-icon { font-size: 1rem; opacity: 0.85; flex-shrink: 0; }

/* =====================================================
   HERO
   ===================================================== */
#accueil { scroll-margin-top: 0; }
.hero {
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  background: var(--beige-light);
}
.hero-visual {
  order: -1;
  position: relative;
  /* Photo portrait : on lui donne de la hauteur pour bien la montrer */
  aspect-ratio: 3/4;
  max-height: 75vw;
  overflow: hidden;
}
.hero-visual .photo-wrap { height: 100%; }
/* Ancrer l'image en haut pour garder le visage + bouquet visibles */
.hero-visual .photo-wrap img { object-position: top center; }
.hero-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 20px rgba(58,48,43,0.12);
  max-width: 170px;
}
.hero-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.hero-badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}
.hero-content {
  padding: 2rem var(--container-px) 2.5rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.hero-eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
}
.hero h1 {
  font-weight: 300;
  margin-bottom: 1rem;
}
.hero h1 em { color: var(--rose); }
.hero-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-actions .btn { width: 100%; }
.hero-scroll { display: none; }

/* =====================================================
   SECTIONS — espacement mobile
   ===================================================== */
.histoire,
.creations-gallery,
.services-preview,
.atelier-section,
.quote-section,
.contact-page {
  padding: 3.5rem 0;
}
.about-values-block { padding: 3rem 0 0; }

/* =====================================================
   À PROPOS
   ===================================================== */
.histoire { background: var(--white); }

.histoire-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.histoire-visual {
  position: relative;
}
.histoire-photo {
  width: 100%;
  aspect-ratio: 4/3;
}
.histoire-sticker {
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 0.4rem;
}
.histoire-text { padding-top: 1rem; }
.histoire-text h2 { margin-bottom: 0.8rem; }
.histoire-text p { color: var(--text-soft); }
.histoire-names {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}

/* VALEURS */
.values-header { margin-bottom: 2rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.value-card {
  padding: 1.5rem 1.5rem 1.5rem 1.2rem;
  border-left: 2px solid var(--green);
  background: var(--beige);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* =====================================================
   CRÉATIONS
   ===================================================== */
.creations-gallery { background: var(--beige); }

.creations-header {
  margin-bottom: 1.8rem;
}
.creations-header h2 { margin-top: 0.3rem; }
.creations-intro {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  /* Effet "photo posée" : bordure blanche + ombre */
  background: var(--white);
  padding: 5px;
  box-shadow: 0 2px 12px rgba(58,48,43,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-5px) rotate(0.4deg);
  box-shadow: 0 10px 28px rgba(58,48,43,0.18);
}

/* Le photo-wrap remplit le carré et ne déborde pas */
.gallery-item .gallery-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  display: block;
}
.gallery-item .gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-photo img { transform: scale(1.06); }

/* Annuler les anciens styles "tall" — tous carrés */
.gallery-item.tall { grid-row: span 1; }

/* Caption : glisse depuis le bas */
.gallery-caption {
  position: absolute;
  bottom: 5px; left: 5px; right: 5px;
  padding: 1rem 0.9rem 0.7rem;
  background: linear-gradient(transparent, rgba(17,16,16,0.78));
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption h3 {
  color: var(--white);
  font-size: 0.92rem;
  margin: 0 0 0.1rem;
}
.gallery-caption p { font-size: 0.72rem; opacity: 0.82; margin: 0; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-preview { background: var(--white); }

.services-preview-header {
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-card {
  background: var(--beige);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--green);
  transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-3px); }
.service-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
  line-height: 1;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 1.2rem; }
.service-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 44px;
}
.service-card-link:hover { color: var(--green-dark); }

/* =====================================================
   ATELIERS
   ===================================================== */
.atelier-section { background: var(--beige); }

.atelier-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.atelier-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.atelier-visual .photo-wrap { height: 100%; }
.atelier-visual-note {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--green);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.atelier-visual-note strong {
  display: block;
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
.atelier-text h2 { margin-bottom: 0.8rem; }
.atelier-text p { color: var(--text-soft); }
.atelier-price-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--beige-dark);
  background: var(--white);
}
.atelier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}
.atelier-price-sep { color: var(--beige-dark); }

/* =====================================================
   CITATION
   ===================================================== */
.quote-section {
  background: var(--white);
  text-align: center;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.quote-section figcaption {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-page { background: var(--white); }

/* Bloc rapide 3 infos */
.contact-quick-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--beige);
  margin-bottom: 2.5rem;
}
.contact-quick-item {
  padding: 1.4rem var(--container-px);
  border-bottom: 1px solid var(--beige-mid);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-quick-item:last-child { border-bottom: none; }
.contact-quick-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-quick-body h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.contact-quick-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}
.contact-quick-body a {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}
.contact-quick-body a:hover { color: var(--green-dark); }

/* Contact principal */
.contact-page-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-info-block h2 { margin-bottom: 1rem; }
.contact-detail { margin-bottom: 2rem; }
.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.contact-detail p { color: var(--text-soft); margin: 0; }
.contact-detail a { color: var(--green-dark); font-weight: 500; }

.contact-horaires-grid { display: grid; gap: 0; }
.contact-hor-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--beige-mid);
}
.contact-hor-row:last-child { border-bottom: none; }
.contact-hor-row .day { color: var(--text); font-weight: 500; }

/* Formulaire */
.contact-form-wrap {
  background: var(--beige);
  padding: 2rem var(--container-px);
}
.contact-form-wrap h3 { margin-bottom: 0.3rem; }
.form-intro { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  min-height: 48px;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--green); }
.form-control::placeholder { color: var(--beige-dark); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* Boutons de navigation */
.map-nav-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.map-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  min-height: 48px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  flex: 1;
  justify-content: center;
}
.map-nav-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.map-nav-waze  { background: #00CAFF; color: #1a1a1a; }
.map-nav-waze:hover { color: #1a1a1a; }
.map-nav-gmaps { background: var(--beige); color: var(--text); border: 1px solid var(--beige-dark); }
.map-nav-gmaps:hover { color: var(--text); }

/* Carte */
.contact-map { overflow: hidden; margin-top: 0.75rem; }
.contact-map iframe { width: 100%; height: 260px; border: none; display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--text);
  padding: 3rem 0 1.5rem;
  color: var(--beige-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  margin-bottom: 0.8rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--beige-light);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.footer-phone {
  display: block;
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}
footer h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--beige-light);
  margin-bottom: 1rem;
}
footer ul li { margin-bottom: 0.4rem; }
footer ul a {
  font-size: 0.88rem;
  color: var(--text-soft);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}
footer ul a:hover { color: var(--beige-light); }

.footer-horaires-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.footer-horaires-row span:first-child { color: var(--beige-mid); }

/* Footer nav + services : accordéon minimal sur mobile */
.footer-col-nav,
.footer-col-services {
  display: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

/* =====================================================
   BARRE STICKY MOBILE (CTA)
   ===================================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 64px;
  box-shadow: 0 -2px 16px rgba(58,48,43,0.12);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta-call {
  background: var(--dark);
  color: var(--gold);
  border-right: 1px solid rgba(201,169,110,0.2);
}
.mobile-cta-call:hover { background: #222; color: var(--gold); }
.mobile-cta-contact {
  background: var(--green);
  color: var(--white);
}
.mobile-cta-contact:hover { background: var(--green-dark); color: var(--white); }

/* =====================================================
   SCROLL OFFSET pour nav fixe
   ===================================================== */
section[id] { scroll-margin-top: var(--nav-h); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeInUp 0.6s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* =====================================================
   TABLET — min-width: 640px
   ===================================================== */
@media (min-width: 640px) {
  :root { --container-px: 1.75rem; }

  .info-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem var(--container-px);
    flex-wrap: wrap;
  }
  .info-strip-item {
    padding: 0;
    border-bottom: none;
  }

  .hero-visual { max-height: 480px; }
  .hero-content { padding: 2.5rem var(--container-px) 3rem; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: auto; }

  .histoire-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .histoire-sticker { width: 96px; height: 96px; font-size: 0.8rem; }

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

  .gallery-masonry { gap: 0.75rem; }

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

  .atelier-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .atelier-visual { aspect-ratio: auto; }

  .contact-quick-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .contact-quick-item {
    border-bottom: none;
    border-right: 1px solid var(--beige-mid);
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.8rem 1.5rem;
    text-align: center;
    align-items: center;
  }
  .contact-quick-item:last-child { border-right: none; }

  .contact-form-wrap { padding: 2.5rem 2rem; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-nav,
  .footer-col-services { display: block; }

  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* =====================================================
   DESKTOP — min-width: 960px
   ===================================================== */
@media (min-width: 960px) {
  :root { --container-px: 2rem; --nav-h: 72px; }

  /* Nav desktop — logo + liens à gauche */
  .nav {
    padding: 0 2rem;
    justify-content: flex-start;
    gap: 2rem;
  }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    gap: 0;
    align-items: center;
    flex: 1;
  }
  .nav-links li { width: auto; }
  .nav-links li:last-child { margin-left: auto; }
  .nav-links a {
    display: inline-flex;
    min-height: auto;
    padding: 0.4rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    border-bottom: none;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--green);
    transition: width var(--transition);
  }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--green);
    background: none;
  }
  .nav-links .nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    margin-top: 0;
    min-height: auto;
  }
  .nav-links .nav-cta::after { display: none !important; }
  .nav-links .nav-cta:hover { background: var(--green-dark) !important; }
  .nav-links li + li { margin-left: 1.8rem; }
  .nav-links li { margin-left: 0; }

  /* Hero desktop : côte à côte */
  .hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
    padding-top: 0;
  }
  .hero-visual {
    order: 0;
    aspect-ratio: auto;
    max-height: none;
    height: 100%;
  }
  /* Sur desktop, centrer verticalement la photo */
  .hero-visual .photo-wrap img { object-position: center center; }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 2rem) 3.5rem 4rem 5vw;
    order: -1;
  }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .hero-scroll {
    display: flex;
    margin-top: 3.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-soft);
    align-items: center;
    gap: 0.7rem;
  }
  .hero-scroll::before {
    content: '';
    width: 1px;
    height: 32px;
    background: var(--beige-dark);
    display: block;
  }
  .hero-badge {
    bottom: 2.5rem;
    right: auto;
    left: 1.5rem;
    max-width: 200px;
  }


  /* Sections desktop */
  .histoire,
  .creations-gallery,
  .services-preview,
  .atelier-section,
  .quote-section,
  .contact-page { padding: 5.5rem 0; }

  .histoire-inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
  .histoire-sticker {
    width: 110px; height: 110px;
    font-size: 0.85rem;
    bottom: -1.5rem;
    right: -1.8rem;
  }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  /* Stagger par colonne — s'applique à toutes les lignes automatiquement */
  .gallery-item:nth-child(3n+1) { margin-top: 0; }
  .gallery-item:nth-child(3n+2) { margin-top: 2.5rem; }
  .gallery-item:nth-child(3n+3) { margin-top: 1.2rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { background: var(--white); }

  .atelier-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .atelier-visual { aspect-ratio: 1; }
  .atelier-visual-note {
    top: auto;
    right: -1rem;
    bottom: auto;
    top: -1rem;
  }

  .contact-page-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-form-wrap { padding: 3rem; }
  .contact-map iframe { height: 320px; }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-bottom {
    padding-top: 1.5rem;
    flex-direction: row;
    justify-content: space-between;
  }

  /* Créations header desktop */
  .creations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .creations-intro {
    text-align: right;
    max-width: 36ch;
    margin: 0;
  }
}

/* =====================================================
   LARGE — min-width: 1200px
   ===================================================== */
@media (min-width: 1200px) {
  .hero-content { padding-left: 8vw; }
  .services-grid { gap: 1.5rem; }
}
