/*
Theme Name: Les Trésors de Val
Theme URI: https://lestresorsdeval.be
Author: L'Atelier
Description: Thème vitrine sur-mesure pour Les Trésors de Val — bijoux, couture, tissus. Hero "Arbre à trésors" SVG animé.
Version: 1.0.0
License: GPL v2 or later
Text Domain: lestresorsdeval
*/

:root {
  --cream: #F7F1E6;
  --cream-deep: #EFE7D6;
  --gold: #C19A5B;
  --gold-light: #D8B783;
  --sage: #9DAE92;
  --sage-light: #C5D2BC;
  --blush: #D7B3A6;
  --ink: #2E2620;
  --ink-soft: #5A4F45;
  --paper: #FBF7EE;

  --font-serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;

  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 4px;

  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .25s var(--ease-soft); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.25; }
p { margin: 0 0 1em; }
.script { font-family: var(--font-script); font-weight: 500; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.6em;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); background: transparent;
  border: 1px solid var(--gold); border-radius: var(--radius);
  cursor: pointer; transition: all .3s var(--ease-soft);
}
.btn:hover { background: var(--gold); color: var(--cream); transform: translateY(-1px); }
.link-gold { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.link-gold:hover { color: var(--ink); border-color: var(--ink); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.1rem 0;
  background: rgba(247, 241, 230, 0);
  transition: background .35s var(--ease-soft), padding .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.site-header.is-scrolled {
  background: rgba(247, 241, 230, 0.94);
  backdrop-filter: blur(8px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(46, 38, 32, 0.06);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-brand { display: inline-flex; align-items: center; }
.site-brand__logo {
  display: block;
  width: auto;
  height: 90px;
  max-width: 160px;
  object-fit: contain;
  transition: height .35s var(--ease-soft);
}
.site-header.is-scrolled .site-brand__logo { height: 56px; }

/* Sur la home, on cache le logo du header (déjà présent en grand dans le hero) */
body.is-home .site-brand { display: none; }
body.is-home .site-header__inner { justify-content: flex-end; }
.main-nav ul { display: flex; gap: 1.8rem; margin: 0; padding: 0; list-style: none; }
.main-nav a { font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink-soft); position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease-soft); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease-soft), opacity .2s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 4rem;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(193, 154, 91, 0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(215, 179, 166, 0.05) 0, transparent 50%);
  pointer-events: none;
}
.hero__visual { position: relative; align-self: center; padding-left: var(--gutter); display: flex; justify-content: center; align-items: center; }
.hero__content { padding-right: var(--gutter); position: relative; z-index: 2; }

/* ===== Hero logo + effets ===== */
.hero__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 5 / 6;
  display: grid;
  place-items: center;
}

/* Halo doré radial pulsant */
.hero__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(216, 183, 131, 0.45) 0%,
      rgba(193, 154, 91, 0.18) 35%,
      rgba(193, 154, 91, 0.05) 60%,
      transparent 75%);
  filter: blur(20px);
  opacity: 0;
  animation: haloIn 1.4s var(--ease-soft) .2s forwards, haloPulse 6s ease-in-out 1.6s infinite;
  z-index: 0;
}
@keyframes haloIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
@keyframes haloPulse {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Orbites pointillées qui tournent */
.hero__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  animation: orbitIn 1.2s var(--ease-soft) .8s forwards, orbitSpin 60s linear 2s infinite;
  transform-origin: center;
}
.hero__orbit--reverse {
  animation: orbitIn 1.2s var(--ease-soft) 1s forwards, orbitSpinReverse 80s linear 2.2s infinite;
}
@keyframes orbitIn { to { opacity: 1; } }
@keyframes orbitSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { from { transform: rotate(0); } to { transform: rotate(-360deg); } }

/* Étoiles autour du logo */
.hero__star {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0;
  z-index: 2;
  animation: starAppear 1s var(--ease-soft) forwards, starTwinkle 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(216, 183, 131, 0.55));
}
.hero__star--1 { top: 8%;  left: 12%; width: 18px; height: 18px; animation-delay: 1.2s, 2s; }
.hero__star--2 { top: 18%; right: 8%; width: 14px; height: 14px; animation-delay: 1.4s, 2.4s; }
.hero__star--3 { bottom: 22%; left: 6%; width: 12px; height: 12px; animation-delay: 1.6s, 2.8s; }
.hero__star--4 { bottom: 12%; right: 14%; width: 16px; height: 16px; animation-delay: 1.8s, 3s; }
.hero__star--5 { top: 50%; right: 0%;  width: 10px; height: 10px; animation-delay: 2s, 3.4s; }
@keyframes starAppear { to { opacity: 1; } }
@keyframes starTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50%      { transform: scale(.6) rotate(20deg); opacity: .4; }
}

/* LE LOGO central */
.hero__logo {
  position: relative;
  z-index: 5;
  display: block;
  width: 62%;
  max-width: 320px;
  opacity: 0;
  transform: scale(.88);
  animation: logoIn 1.4s var(--ease-soft) .4s forwards;
  transition: transform .6s var(--ease-soft);
  will-change: transform;
}
.hero__logo img { width: 100%; height: auto; display: block; filter: drop-shadow(0 12px 30px rgba(46, 38, 32, 0.12)); }
@keyframes logoIn { to { opacity: 1; transform: scale(1); } }
.hero__logo-wrap:hover .hero__logo { transform: scale(1.02); }

/* 4 bulles cliquables aux 4 angles */
.hero__bubble {
  position: absolute;
  z-index: 6;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0C394 0%, #C19A5B 100%);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px -6px rgba(46, 38, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(247, 241, 230, 0.85);
  opacity: 0;
  transform: scale(.5);
  animation: bubbleIn .8s var(--ease-soft) forwards;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.hero__bubble svg { width: 28px; height: 28px; }
.hero__bubble--tl { top: -2%;    left: -2%;  animation-delay: 2.40s; }
.hero__bubble--tr { top: -2%;    right: -2%; animation-delay: 2.55s; }
.hero__bubble--br { bottom: -2%; right: -2%; animation-delay: 2.70s; }
.hero__bubble--bl { bottom: -2%; left: -2%;  animation-delay: 2.85s; }
.hero__bubble:hover, .hero__bubble:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 10px 28px -6px rgba(193, 154, 91, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  outline: none;
}
.hero__bubble-label {
  position: absolute;
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: .2rem .65rem;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-soft), transform .3s var(--ease-soft);
}
.hero__bubble--tl .hero__bubble-label { top: calc(100% + 8px);    left: 0;  transform: translateY(-4px); }
.hero__bubble--tr .hero__bubble-label { top: calc(100% + 8px);    right: 0; transform: translateY(-4px); }
.hero__bubble--bl .hero__bubble-label { bottom: calc(100% + 8px); left: 0;  transform: translateY(4px); }
.hero__bubble--br .hero__bubble-label { bottom: calc(100% + 8px); right: 0; transform: translateY(4px); }
.hero__bubble:hover .hero__bubble-label,
.hero__bubble:focus-visible .hero__bubble-label { opacity: 1; transform: translateY(0); }
@keyframes bubbleIn { to { opacity: 1; transform: scale(1); } }

/* Particules dorées flottantes en fond du hero */
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #E0C394, #C19A5B 60%, transparent 70%);
  opacity: 0;
  animation: particleFloat 14s ease-in-out infinite;
  filter: blur(.3px);
}
.particle--1 { top: 15%; left: 7%;  width: 8px; height: 8px; animation-delay: 0s; }
.particle--2 { top: 70%; left: 4%;  width: 5px; height: 5px; animation-delay: 1.5s; }
.particle--3 { top: 25%; left: 92%; width: 6px; height: 6px; animation-delay: 3s; }
.particle--4 { top: 80%; left: 88%; width: 7px; height: 7px; animation-delay: 4.5s; }
.particle--5 { top: 45%; left: 50%; width: 4px; height: 4px; animation-delay: 6s; }
.particle--6 { top: 10%; left: 35%; width: 5px; height: 5px; animation-delay: 7.5s; }
.particle--7 { top: 90%; left: 60%; width: 6px; height: 6px; animation-delay: 9s; }
.particle--8 { top: 55%; left: 85%; width: 5px; height: 5px; animation-delay: 10.5s; }
@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  15%      { opacity: .8; }
  50%      { opacity: 1; transform: translate(-20px, -30px); }
  85%      { opacity: .6; }
}
.hero__eyebrow {
  font-family: var(--font-sans); font-size: .78rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400; line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead {
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic;
  color: var(--ink-soft); max-width: 28rem; margin-bottom: 2.5rem;
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-sans); font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll-line { display: inline-block; width: 40px; height: 1px; background: var(--gold); animation: scrollPulse 2.4s var(--ease-soft) infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleX(.4); transform-origin: left; } 50% { transform: scaleX(1); } }

/* Hero reveal */
.hero__content > * { opacity: 0; transform: translateY(12px); animation: fadeUp .9s var(--ease-soft) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .4s; }
.hero__content > *:nth-child(2) { animation-delay: .6s; }
.hero__content > *:nth-child(3) { animation-delay: .8s; }
.hero__content > *:nth-child(4) { animation-delay: 1.0s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Sections */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--cream { background: var(--paper); }
.section__eyebrow { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; display: block; }
.section__title { font-family: var(--font-serif); font-size: clamp(1.85rem, 3.5vw, 2.75rem); margin-bottom: 1.2rem; }
.section__intro { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--ink-soft); max-width: 38rem; margin-bottom: 3rem; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }

/* Univers grid (legacy — gardé au cas où) */
.univers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 880px; margin: 0 auto; }

/* Vitrine — galerie photos sur la home */
.vitrine__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.vitrine__item {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid rgba(193, 154, 91, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(var(--rot, 0deg));
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .45s var(--ease-soft);
  box-shadow: 0 6px 24px -16px rgba(46, 38, 32, 0.18);
}
.vitrine__item::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px dashed rgba(193, 154, 91, 0.4);
  border-radius: 2px;
  pointer-events: none;
  transition: border-color .45s var(--ease-soft);
}
.vitrine__item:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: 0 22px 48px -18px rgba(193, 154, 91, 0.45);
  border-color: var(--gold);
}
.vitrine__item:hover::before { border-color: var(--gold); border-style: solid; }
.vitrine__item--placeholder { display: flex; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.vitrine__item--placeholder span {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.vitrine__item--placeholder::after {
  content: '';
  position: absolute; inset: 30% 25%;
  background:
    radial-gradient(circle at 30% 40%, rgba(193,154,91,.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(157,174,146,.1) 0%, transparent 60%);
  pointer-events: none;
}
.univers__card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid rgba(193, 154, 91, 0.18);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), border-color .4s var(--ease-soft);
  display: block;
  overflow: hidden;
}
.univers__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .5s var(--ease-soft);
}
.univers__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(46, 38, 32, 0.18); border-color: rgba(193, 154, 91, 0.4); }
.univers__card:hover::before { transform: scaleX(1); }
.univers__icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 1.4rem; }
.univers__title { font-size: 1.5rem; margin-bottom: .8rem; }
.univers__desc { color: var(--ink-soft); margin-bottom: 1.4rem; }
.univers__link { font-family: var(--font-serif); font-style: italic; color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; }
.univers__link::after { content: '→'; transition: transform .3s var(--ease-soft); }
.univers__card:hover .univers__link::after { transform: translateX(4px); }

/* Atelier teaser (split) */
.atelier-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.atelier-teaser__img { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--cream-deep); }
.atelier-teaser__img::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); border-radius: var(--radius); transform: translate(14px, 14px); pointer-events: none; }
.atelier-teaser__quote { font-family: var(--font-script); font-size: 1.7rem; color: var(--gold); line-height: 1.4; margin: 1.5rem 0; }

/* Instagram bandeau */
.instagram-band { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--ink); color: var(--cream); text-align: center; }
.instagram-band h2 { color: var(--cream); }
.instagram-band p { color: rgba(247, 241, 230, 0.75); max-width: 32rem; margin: 0 auto 2rem; }
.instagram-band .btn { border-color: var(--gold-light); color: var(--cream); }
.instagram-band .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Footer */
.site-footer { background: var(--cream-deep); padding: 4rem 0 2rem; color: var(--ink-soft); font-size: .92rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.site-footer h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 1.2rem; letter-spacing: .02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold); }
.site-footer__bottom { padding-top: 1.5rem; border-top: 1px solid rgba(193, 154, 91, 0.2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .82rem; }

/* Page templates */
.page-hero { padding: 9rem 0 4rem; background: var(--paper); }
.page-hero__eyebrow { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.page-hero h1 { max-width: 24ch; }
.page-hero__lead { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--ink-soft); max-width: 38rem; }
.page-content { padding: 4rem 0; }
.page-content .container { max-width: 760px; }
.page-content h2, .page-content h3 { margin-top: 2.2rem; }

/* Galerie (used by Bijoux/Tissus/Couture pages) */
.galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.galerie__item {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(193, 154, 91, 0.15);
}
.galerie__item--placeholder { display: flex; align-items: center; justify-content: center; }
.galerie__item--placeholder span { font-family: var(--font-script); font-size: 1.3rem; color: var(--gold); }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.process__step { position: relative; padding-top: 3.5rem; }
.process__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0; font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold); font-style: italic; }
.process__step h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.process__step p { color: var(--ink-soft); font-size: .95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form .wpcf7 { margin-top: 1rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, .contact-form select {
  width: 100%; padding: .9rem 1rem; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid rgba(193, 154, 91, 0.4); border-radius: var(--radius);
  margin-bottom: 1rem; transition: border-color .25s var(--ease-soft);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { display: block; font-family: var(--font-serif); font-size: 1rem; color: var(--ink); margin-bottom: .3rem; }
.contact-form input[type="submit"], .wpcf7-submit {
  font-family: var(--font-serif); font-size: 1.05rem; padding: .9em 2em;
  background: var(--ink); color: var(--cream); border: 0; border-radius: var(--radius);
  cursor: pointer; transition: background .3s var(--ease-soft);
}
.contact-form input[type="submit"]:hover, .wpcf7-submit:hover { background: var(--gold); }
.contact-info { background: var(--cream); padding: 2.5rem; border-radius: var(--radius); border: 1px solid rgba(193, 154, 91, 0.18); }
.contact-info h3 { font-size: 1.25rem; }
.contact-info p { color: var(--ink-soft); font-size: .95rem; }
.contact-info a { color: var(--gold); border-bottom: 1px dotted var(--gold); }

/* 404 */
.error-404 { padding: 12rem 0 6rem; text-align: center; }
.error-404 h1 { font-size: clamp(4rem, 10vw, 7rem); color: var(--gold); margin-bottom: 1rem; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__logo, .hero__halo, .hero__orbit, .hero__star, .hero__bubble, .particle, .hero__content > * { opacity: 1 !important; transform: none !important; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; gap: 2rem; }
  .hero__visual { padding-left: 0; order: 2; }
  .hero__logo-wrap { max-width: 420px; }
  .hero__bubble { width: 52px; height: 52px; }
  .hero__bubble svg { width: 22px; height: 22px; }
  .hero__content { order: 1; padding-right: 0; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .univers { grid-template-columns: 1fr; }
  .atelier-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .galerie { grid-template-columns: repeat(2, 1fr); }

  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem var(--gutter); transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform .35s var(--ease-soft), opacity .25s var(--ease-soft); box-shadow: 0 12px 30px -20px rgba(46, 38, 32, 0.2); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 1rem; }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
}
