/* =====================================
   Cordonnerie 37 — Ciney
   Esthétique : atelier ancien, bois patiné,
                typographie d'établi, ornements.
   ===================================== */

:root {
  --ink:         #151311;   /* noir encre */
  --ink-soft:    #26221e;
  --char:        #3a3633;
  --graphite:    #6b635a;

  --cream:       #f4ecd9;   /* parchemin chaud */
  --cream-warm:  #ead9b9;   /* papier vieilli */
  --cream-deep:  #d8c298;   /* jaune ivoire */
  --paper:       #faf5e8;

  --wood:        #7a5f40;   /* bois noyer */
  --wood-deep:   #4a3620;   /* bois sombre */
  --wood-mid:    #8a6f4a;
  --wood-light:  #b69468;   /* bois clair */

  --leather:     #8a4318;   /* cuir tanné / tablier ocre */
  --leather-dk:  #5a2a0e;
  --brass:       #b88c3a;   /* laiton */
  --brass-bright:#d6a94e;

  --line:        rgba(21, 19, 17, 0.14);
  --line-soft:   rgba(21, 19, 17, 0.07);
  --line-strong: rgba(21, 19, 17, 0.35);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --script: 'Great Vibes', 'Tangerine', cursive;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 2px;
  --shadow-soft: 0 14px 40px rgba(21, 19, 17, 0.16);
  --shadow-deep: 0 24px 70px rgba(21, 19, 17, 0.28);
  --shadow-frame: 0 2px 0 rgba(21,19,17,0.08), 0 22px 50px rgba(21,19,17,0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  /* Texture papier vieilli sur tout le site */
  background-image:
    radial-gradient(1400px 900px at 10% -10%, rgba(184, 140, 58, 0.09), transparent 60%),
    radial-gradient(1200px 800px at 110% 10%, rgba(74, 54, 32, 0.07), transparent 60%),
    radial-gradient(800px 600px at 50% 100%, rgba(184, 140, 58, 0.06), transparent 70%),
    repeating-linear-gradient(
      45deg,
      rgba(122, 95, 64, 0.015) 0 2px,
      transparent 2px 6px
    );
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHIE ============ */
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
a:hover { color: var(--leather); border-color: currentColor; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--leather);
  margin: 0 0 1em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.solo::before { display: none; }
.eyebrow.solo::after { display: none; }

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

/* Ornement typographique */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--leather);
  margin: 0 auto 1.6em;
  font-size: 1.3rem;
  opacity: 0.75;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 90px);
  height: 1px;
  background: currentColor;
}
.ornament svg { flex: 0 0 auto; width: 24px; height: 24px; fill: currentColor; }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.2em;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--leather);
  font-style: italic;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 236, 217, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  border: none;
  font-family: var(--serif);
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 2px var(--cream), inset 0 0 0 3px var(--ink);
  transition: transform .4s ease;
}
.logo:hover .logo-mark { transform: rotate(-8deg); }
.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  color: var(--graphite);
  margin-left: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  text-transform: uppercase;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1px;
  background: var(--leather);
  transition: width .3s ease, left .3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; left: 0; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(540px, 86vh, 820px);
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('images/comptoir.jpg') center 35% / cover no-repeat;
  animation: kenburns 20s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,12,10,0.45) 0%, rgba(15,12,10,0.55) 55%, rgba(15,12,10,0.75) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(184,140,58,0.18), transparent 55%);
}

@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-inner {
  padding: clamp(80px, 14vw, 160px) 0 clamp(70px, 11vw, 130px);
  max-width: 860px;
  position: relative;
}
.hero .eyebrow { color: var(--brass-bright); }
.hero h1 {
  color: var(--cream);
  margin-top: 0.25em;
  font-weight: 500;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-bright);
}
.hero .tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: rgba(244, 236, 217, 0.85);
  font-style: italic;
  max-width: 640px;
  margin: 1.2em 0 2.2em;
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badge {
  position: absolute;
  top: 50%;
  right: 6vw;
  transform: translateY(-50%) rotate(-6deg);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 169, 78, 0.5);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  color: var(--brass-bright);
  animation: floaty 6s ease-in-out infinite;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(214, 169, 78, 0.4);
}
.hero-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 6px;
  color: rgba(214, 169, 78, 0.8);
}
.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  display: block;
  line-height: 1;
}
.hero-badge .big {
  font-size: 2.4rem;
  font-weight: 600;
  font-style: normal;
  color: var(--brass-bright);
  display: block;
  line-height: 1;
}
@media (max-width: 900px) { .hero-badge { display: none; } }

@keyframes floaty {
  0%,100% { transform: translateY(-50%) rotate(-6deg); }
  50%     { transform: translateY(calc(-50% - 10px)) rotate(-4deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 236, 217, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: floatUp 2.4s ease-in-out infinite;
}
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 28px;
  background: currentColor;
}
@keyframes floatUp {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%     { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--brass-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 236, 217, 0.55);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.section .btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.section .btn-primary:hover {
  background: var(--leather);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(90, 42, 14, 0.35);
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(90px, 12vw, 150px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line-soft); }

.section.alt {
  background: var(--cream-warm);
  background-image:
    /* veinures bois verticales */
    repeating-linear-gradient(
      92deg,
      rgba(74, 54, 32, 0.04) 0 1px,
      transparent 1px 7px
    ),
    /* anneaux de croissance */
    radial-gradient(2000px 400px at -20% 30%, rgba(74, 54, 32, 0.08), transparent 70%),
    radial-gradient(2000px 400px at 120% 70%, rgba(74, 54, 32, 0.06), transparent 70%);
}

.section.dark {
  background: var(--ink);
  color: rgba(244, 236, 217, 0.82);
  background-image:
    radial-gradient(1400px 700px at 10% 0%, rgba(184, 140, 58, 0.12), transparent 60%),
    radial-gradient(1200px 600px at 100% 100%, rgba(122, 95, 64, 0.1), transparent 70%);
}
.section.dark h2, .section.dark h3 { color: var(--cream); }
.section.dark .eyebrow { color: var(--brass-bright); }

.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-intro {
  color: var(--graphite);
  font-size: 1.08rem;
  font-family: var(--serif);
  font-style: italic;
}
.section.dark .section-intro { color: rgba(244, 236, 217, 0.7); }

/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.service-card {
  background: var(--paper);
  padding: 32px 30px 36px;
  transition: background .3s ease, transform .3s ease;
  position: relative;
  outline: 1px solid var(--line);
  outline-offset: -1px;
}
.service-card:hover {
  background: var(--cream);
  z-index: 2;
}

/* Vignette image en haut de chaque carte */
.service-thumb {
  margin: 0 0 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  padding: 6px;
  background:
    repeating-linear-gradient(92deg, var(--wood-deep) 0 2px, var(--wood) 2px 4px, var(--wood-mid) 4px 8px);
  box-shadow: 0 6px 18px rgba(21,19,17,0.18);
}
.service-thumb::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244,236,217,0.22);
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.08);
  transition: transform 1s ease, filter .6s ease;
}
.service-card:hover .service-thumb img {
  transform: scale(1.06);
  filter: sepia(0);
}

.service-card .num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--leather);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  font-feature-settings: "onum";
}
.service-card h3 {
  color: var(--ink);
  margin-bottom: 0.5em;
}
.service-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--leather);
  margin-top: 14px;
  transition: width .4s ease;
}
.service-card:hover h3::after { width: 60px; }
.service-card p {
  color: var(--graphite);
  font-size: 0.97rem;
  margin: 16px 0 0;
  line-height: 1.65;
}

/* ============ ATELIER / INTRO ============ */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.atelier-text .script-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.35em;
  line-height: 1.12;
}
.atelier-text p { color: var(--graphite); font-size: 1.05rem; }
.atelier-text .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--leather);
  margin-top: 1.6em;
  display: inline-block;
  padding-left: 22px;
  border-left: 2px solid var(--leather);
}

.atelier-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  /* Cadre bois */
  padding: 12px;
  background:
    repeating-linear-gradient(
      92deg,
      var(--wood-deep) 0 2px,
      var(--wood) 2px 4px,
      var(--wood-mid) 4px 8px,
      var(--wood) 8px 12px
    );
}
.atelier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease, filter .8s ease;
  filter: sepia(0.05);
}
.atelier-photo:hover img { transform: scale(1.04); filter: sepia(0); }

/* Stamp "Depuis Ciney" */
.stamp {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--leather);
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  transform: rotate(12deg);
  z-index: 3;
  box-shadow: 0 10px 26px rgba(90,42,14,0.35);
}
.stamp::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(244, 236, 217, 0.55);
  border-radius: 50%;
}
.stamp-text {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.4;
}
.stamp-text em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.35rem;
  margin-top: 2px;
}

/* ============ QUOTE BAND ============ */
.quote-band {
  background:
    linear-gradient(rgba(21,19,17,0.72), rgba(21,19,17,0.82)),
    url('images/atelier.jpg') center / cover no-repeat fixed;
  color: var(--cream);
  padding: clamp(100px, 14vw, 160px) 0;
  text-align: center;
  position: relative;
}
.quote-band::before,
.quote-band::after {
  content: """;
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(184,140,58,0.45);
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.5;
  pointer-events: none;
}
.quote-band::before { top: 30px; left: 5%; }
.quote-band::after { content: """; bottom: -30px; right: 5%; }
.quote-band blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.quote-band cite {
  display: block;
  margin-top: 2.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-bright);
}

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-subtitle {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 1.8rem;
  letter-spacing: -0.01em;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 140, 58, 0.12);
  color: var(--leather);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.contact-text {
  min-width: 0;
  flex: 1 1 auto;
}
.contact-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.5;
  word-break: break-word;
}
.contact-value a { color: var(--ink); border-bottom: none; }
.contact-value a:hover { color: var(--leather); }

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--leather);
  color: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  margin-top: 18px;
  cursor: pointer;
}
.btn-contact:hover {
  background: var(--leather-dk);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(90, 42, 14, 0.35);
  border-color: transparent;
}
.btn-contact svg { flex: 0 0 auto; }

/* Carte horaires */
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 14px 40px rgba(21, 19, 17, 0.08);
}
.hours-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hours-card-head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.hours-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.hours-card-row:last-of-type { border-bottom: none; }
.hours-card-row .day {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  flex: 0 0 auto;
  padding-right: 16px;
}
.hours-card-row .time {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--graphite);
  font-variant-numeric: tabular-nums;
  text-align: right;
  flex: 1 1 auto;
}
.hours-card-row .time.closed {
  font-style: italic;
  color: var(--graphite);
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--leather);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.maps-link:hover {
  border-bottom-color: var(--leather);
  color: var(--leather-dk);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(244, 236, 217, 0.7);
  padding: 60px 0 36px;
  background-image:
    radial-gradient(1200px 400px at 10% 0%, rgba(184,140,58,0.12), transparent 60%),
    radial-gradient(1000px 400px at 100% 100%, rgba(122,95,64,0.1), transparent 70%);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}
.footer-col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brass-bright);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col p,
.footer-col a {
  color: rgba(244, 236, 217, 0.72);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
  display: block;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 236, 217, 0.08);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(244, 236, 217, 0.5);
}
.footer-bottom .footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-bright);
}

/* ============ ANIMATIONS SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* Line draw pour titres */
.line-grow {
  position: relative;
  display: inline-block;
}
.line-grow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--leather);
  transition: width 1s cubic-bezier(.2,.8,.2,1) .3s;
}
.line-grow.is-visible::after { width: 100%; }

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav a { margin-left: 18px; font-size: 0.82rem; letter-spacing: 0.08em; }
  .logo-text { display: none; }
  .atelier-grid {
    grid-template-columns: 1fr;
  }
  .atelier-photo { order: -1; aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stamp { width: 100px; height: 100px; top: -20px; right: -16px; }
  .stamp-text { font-size: 0.6rem; }
  .stamp-text em { font-size: 1.1rem; }
  .quote-band { background-attachment: scroll; }
}

@media (max-width: 420px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 14px 18px; }
  .nav { display: flex; flex-wrap: wrap; justify-content: flex-end; max-width: 65%; }
  .nav a { margin: 4px 0 4px 12px; font-size: 0.72rem; }
  .btn { padding: 14px 26px; font-size: 0.8rem; letter-spacing: 0.14em; }
  .hours-card-row { flex-direction: column; gap: 4px; align-items: flex-start; padding: 16px 0; }
  .hours-card-row .day { padding-right: 0; }
  .hours-card-row .time { text-align: left; }
}
