/* ============================================================
   FILDELO — Du tissu à l'émotion
   Couturière · Normandie (76)
   ============================================================ */

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

/* ---- Tokens / Ambiance: Poudré (default) ---- */
:root {
  --ink:        #221B17;
  --ink-soft:   #5A4F47;
  --rose:       #C9A08E;
  --rose-deep:  #AE7E66;
  --blush:      #EADCD3;
  --blush-2:    #F3E8E1;
  --cream:      #FAF4EF;
  --paper:      #FFFFFF;
  --gold:       #A6794B;
  --gold-soft:  #C7A983;
  --line:       rgba(34,27,23,0.14);
  --line-soft:  rgba(34,27,23,0.08);

  --bg:         var(--cream);
  --surface:    var(--paper);
  --accent:     var(--rose-deep);
  --accent-2:   var(--gold);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Ambiance: Lin (naturel) ---- */
[data-ambiance="lin"] {
  --ink:        #2C2620;
  --ink-soft:   #6A5F53;
  --rose:       #C9B79E;
  --rose-deep:  #A98C68;
  --blush:      #E7DDCC;
  --blush-2:    #F1EADD;
  --cream:      #F6F1E7;
  --gold:       #94703F;
  --gold-soft:  #C2A877;
  --accent:     #A98C68;
  --accent-2:   #8C7A4F;
}

/* ---- Ambiance: Encre (minimal éditorial) ---- */
[data-ambiance="encre"] {
  --ink:        #1A1714;
  --ink-soft:   #6B635C;
  --rose:       #C9A08E;
  --rose-deep:  #B07E64;
  --blush:      #F0E7E1;
  --blush-2:    #F7F1ED;
  --cream:      #FBFAF8;
  --gold:       #A6794B;
  --accent:     #B07E64;
  --accent-2:   #1A1714;
  --line:       rgba(26,23,20,0.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--rose); color: #fff; }

/* ---- Helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.muted { color: var(--ink-soft); }
.serif { font-family: var(--serif); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; }

.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section-head { max-width: 720px; }
.section-head h2 {
  font-size: clamp(34px, 5.2vw, 62px);
  margin-top: 18px;
  font-weight: 300;
}
.section-head p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 56ch;
}
em.it { font-style: italic; color: var(--accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 100px;
  transition: all .45s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover { background: var(--accent); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  padding-block: 14px;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 30px; height: 32px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.42em; font-size: 17px; padding-left: 0.42em;
}
.brand-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 12.5px; color: var(--accent); margin-top: 4px; letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-block: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-social { display: flex; gap: 14px; }
.nav-social a { display: grid; place-items: center; width: 20px; height: 20px; color: var(--ink-soft); transition: color .3s; }
.nav-social a:hover { color: var(--accent); }
.nav-social svg { width: 17px; height: 17px; }
.burger { display: none; width: 30px; height: 22px; position: relative; }
.burger span { position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ink); transition: .4s var(--ease); }
.burger span:nth-child(1){ top: 2px; } .burger span:nth-child(2){ top: 10px; } .burger span:nth-child(3){ top: 18px; }
body.menu-open .burger span:nth-child(1){ top: 10px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 10px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .6s var(--ease); pointer-events: none;
}
body.menu-open .mobile-menu { transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 40px; padding: 8px 0; opacity: .15; transform: translateY(14px); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; transition: all .6s var(--ease); }
.mobile-menu a:nth-child(1){ transition-delay:.08s;} .mobile-menu a:nth-child(2){ transition-delay:.14s;}
.mobile-menu a:nth-child(3){ transition-delay:.2s;} .mobile-menu a:nth-child(4){ transition-delay:.26s;}
.mobile-menu a:nth-child(5){ transition-delay:.32s;}
.mobile-foot { margin-top: 40px; display: flex; gap: 18px; opacity: 0; transition: opacity .6s .4s; }
body.menu-open .mobile-foot { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(40px, 7vw, 90px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; }
.hero-eyebrow .ln { width: 46px; height: 1px; background: var(--accent); display: inline-block; }
.hero h1 {
  font-size: clamp(46px, 7vw, 98px);
  font-weight: 300; margin-top: 26px;
  text-wrap: balance;
}
.hero h1 .l2 { white-space: nowrap; }
.hero h1 .em { font-style: italic; color: var(--accent); }
.hero-lead {
  margin-top: 28px; max-width: 44ch; font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft); font-weight: 300;
}
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.hero-meta .item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .k { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--ink); }
.hero-meta .v { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.hero-meta .sep { width: 1px; height: 38px; background: var(--line); }

/* logo panel */
.hero-visual { position: relative; }
.logo-panel {
  position: relative; aspect-ratio: 4 / 4.3;
  background:
    radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--rose) 70%, #fff) 0%, var(--rose) 55%, var(--rose-deep) 130%);
  border-radius: var(--radius);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(34,27,23,0.4);
}
.logo-panel::before {
  content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,0.35); border-radius: var(--radius); pointer-events: none;
}
.logo-panel img { width: 66%; mix-blend-mode: multiply; }
.panel-cap {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(34,27,23,0.6);
}
.hero-badge {
  position: absolute; top: -22px; left: -22px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.7;
  animation: spin 26s linear infinite;
}
.hero-badge span { font-family: var(--serif); font-style: italic; font-size: 22px; letter-spacing: 0; text-transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* signature strip */
.strip { border-block: 1px solid var(--line); }
.strip-inner { display: flex; align-items: stretch; }
.strip .cell {
  flex: 1; padding: 30px 22px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  border-left: 1px solid var(--line);
}
.strip .cell:first-child { border-left: none; }
.strip .cell .ic { width: 22px; height: 22px; color: var(--accent); }
.strip .cell h4 { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.strip .cell p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   SAVOIR-FAIRE
   ============================================================ */
.craft-grid {
  margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.craft-card {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 40px 34px 44px; position: relative; background: var(--bg);
  transition: background .5s var(--ease), color .5s var(--ease);
  min-height: 280px; display: flex; flex-direction: column;
}
.craft-card .num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--accent); transition: color .5s; }
.craft-card h3 { font-size: 30px; font-weight: 400; margin-top: 28px; }
.craft-card p { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); transition: color .5s; }
.craft-card .ic { margin-top: auto; padding-top: 26px; width: 30px; height: 30px; color: var(--accent); transition: color .5s; }
.craft-card:hover { background: var(--ink); color: var(--cream); }
.craft-card:hover .num, .craft-card:hover p, .craft-card:hover .ic { color: var(--gold-soft); }

/* ============================================================
   SECONDE VIE / SURCYCLAGE
   ============================================================ */
.seconde { background: var(--blush-2); border-block: 1px solid var(--line); }
.seconde-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.seconde-visual { position: relative; }
.seconde-visual .ph { aspect-ratio: 4/3.4; border-radius: var(--radius); }
.seconde-img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius); box-shadow: 0 36px 70px -40px rgba(34,27,23,0.5); }
.seconde-arrow {
  position: absolute; right: -16px; bottom: -16px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px; padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 20px 36px -22px rgba(34,27,23,0.6);
}
.seconde-arrow svg { width: 18px; height: 18px; color: var(--gold-soft); }
.seconde-body h2 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 300; margin-top: 18px; }
.seconde-body p { margin-top: 22px; color: var(--ink-soft); font-size: 15.5px; max-width: 50ch; }
.seconde-flow { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.flow-item {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; background: var(--surface);
}
.flow-item svg { width: 16px; height: 16px; color: var(--accent); }
.flow-item .from { color: var(--ink-soft); font-size: 13px; }
.flow-item .to { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink); }
.seconde-body .btn { margin-top: 32px; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.filter {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft);
  transition: all .35s var(--ease);
}
.filter.active, .filter:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.masonry { margin-top: 44px; columns: 3; column-gap: 18px; }
.tile { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--blush); }
.tile .ph { width: 100%; display: block; }
.tile .tile-img { width: 100%; display: block; transition: transform .7s var(--ease); }
.tile:hover .tile-img { transform: scale(1.04); }
.tile-info {
  position: absolute; inset: auto 0 0 0; padding: 20px;
  background: linear-gradient(to top, rgba(34,27,23,0.82), transparent);
  color: #fff; transform: translateY(8px); opacity: 0; transition: all .5s var(--ease);
}
.tile:hover .tile-info { transform: none; opacity: 1; }
.tile-info .cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.tile-info h4 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-top: 4px; }
.tile .plus {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(250,244,239,0.92); display: grid; place-items: center;
  transform: scale(.6); opacity: 0; transition: all .5s var(--ease);
}
.tile:hover .plus { transform: none; opacity: 1; }
.tile .plus svg { width: 16px; height: 16px; }

/* photo placeholder */
.ph {
  position: relative;
  background-color: var(--blush);
  background-image: repeating-linear-gradient(135deg,
    transparent 0, transparent 11px,
    color-mix(in srgb, var(--rose) 45%, transparent) 11px,
    color-mix(in srgb, var(--rose) 45%, transparent) 12px);
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  background: var(--bg); padding: 7px 13px; border-radius: 100px;
  border: 1px solid var(--line);
}

.gallery-note {
  margin-top: 32px; text-align: center; font-size: 13px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.gallery-note svg { width: 16px; height: 16px; color: var(--accent); }

/* ============================================================
   BOUTIQUE (e-commerce — prêt à brancher)
   ============================================================ */
.shop { background: var(--blush-2); border-block: 1px solid var(--line); }
.shop .section-head .demo {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.04em;
  background: var(--cream); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px;
}
.shop .section-head .demo svg { width: 14px; height: 14px; color: var(--accent); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -34px rgba(34,27,23,0.45); }
.product-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--blush); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product:hover .product-media img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  padding: 7px 13px;
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.product h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.1; }
.product p { font-size: 13px; color: var(--ink-soft); }
.product-delai { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 11.5px; letter-spacing: 0.04em; color: var(--ink-soft); }
.product-delai::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4b8a5a; flex: none; }
.product-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--serif); font-size: 27px; color: var(--ink); white-space: nowrap; }
.price small { font-size: 15px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 18px; border-radius: 100px; transition: background .4s var(--ease), transform .2s var(--ease);
}
.add-btn svg { width: 15px; height: 15px; }
.add-btn:hover { background: var(--accent); }
.add-btn:active { transform: scale(.95); }

/* cart button in nav */
.cart-btn { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: all .3s var(--ease); }
.cart-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px;
  opacity: 0; transform: scale(.4); transition: all .35s var(--ease);
}
.cart-count.show { opacity: 1; transform: none; }

/* toast */
.toast {
  position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(18px);
  background: var(--ink); color: var(--cream); padding: 14px 24px; border-radius: 100px;
  font-size: 13px; letter-spacing: 0.02em; opacity: 0; pointer-events: none; z-index: 85;
  box-shadow: 0 20px 40px -20px rgba(34,27,23,0.6); transition: all .45s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 17px; height: 17px; color: var(--gold-soft); }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about-portrait { position: relative; }
.about-portrait .ph { aspect-ratio: 3/3.7; border-radius: var(--radius); }
.about-portrait .about-img { width: 100%; aspect-ratio: 3/3.7; object-fit: cover; border-radius: var(--radius); }
.about-portrait .stamp {
  position: absolute; right: -18px; bottom: 30px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: 0 24px 40px -28px rgba(34,27,23,0.5);
}
.about-portrait .stamp .k { font-family: var(--serif); font-style: italic; font-size: 30px; line-height: 1; }
.about-portrait .stamp .v { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.about-body h2 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 300; margin-top: 18px; }
.about-body .lead { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px); font-style: italic; color: var(--ink); margin-top: 26px; line-height: 1.4; }
.about-body p { margin-top: 20px; color: var(--ink-soft); font-size: 15.5px; max-width: 54ch; }
.about-sign { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); }
.about-tags { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.about-tags span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); }

/* ============================================================
   PROCESSUS
   ============================================================ */
.process { background: var(--ink); color: var(--cream); }
.process .eyebrow { color: var(--gold-soft); }
.process .section-head h2 { color: var(--cream); }
.process .section-head p { color: rgba(250,244,239,0.6); }
.steps { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 0 28px; border-left: 1px solid rgba(250,244,239,0.16); }
.step:first-child { padding-left: 0; border-left: none; }
.step .num { font-family: var(--serif); font-style: italic; font-size: 56px; color: var(--gold-soft); font-weight: 300; }
.step h3 { font-size: 25px; margin-top: 18px; color: var(--cream); font-weight: 400; }
.step p { margin-top: 12px; font-size: 14px; color: rgba(250,244,239,0.6); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(40px, 6vw, 96px); }
.contact-aside .eyebrow { margin-bottom: 18px; }
.contact-aside h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 300; }
.contact-aside .sub { margin-top: 22px; color: var(--ink-soft); max-width: 40ch; font-size: 15.5px; }
.contact-list { margin-top: 40px; display: flex; flex-direction: column; }
.contact-row { display: flex; gap: 18px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .ic { width: 22px; height: 22px; color: var(--accent); flex: none; }
.contact-row .lbl { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.contact-row .val { font-family: var(--serif); font-size: 22px; margin-top: 2px; }
.contact-row a.val:hover { color: var(--accent); }

/* form */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.4vw, 44px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 0; background: transparent; border: none; border-bottom: 1px solid var(--line);
  transition: border-color .35s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4504a; }
.field .err { font-size: 11px; color: #b4504a; margin-top: 7px; display: none; letter-spacing: 0.02em; }
.field.invalid .err { display: block; }
.form .btn-solid { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; animation: fade .6s var(--ease); }
.form-success .ck { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; }
.form-success h3 { font-size: 32px; font-weight: 400; }
.form-success p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(56px, 8vw, 96px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { font-size: 26px; }
.footer-brand .tag { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--accent); margin-top: 14px; }
.footer-brand p { margin-top: 18px; color: var(--ink-soft); font-size: 14px; max-width: 34ch; }
.footer-col h5 { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; padding: 7px 0; color: var(--ink); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all .35s; }
.footer-social a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: clamp(44px, 6vw, 72px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ============================================================
   AMBIANCE SWITCHER
   ============================================================ */
.amb {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 10px 9px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 36px -20px rgba(34,27,23,0.5);
}
.amb .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.amb-dots { display: flex; gap: 7px; }
.amb-dot { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); position: relative; transition: transform .3s var(--ease); }
.amb-dot:hover { transform: scale(1.12); }
.amb-dot[data-a="poudre"] { background: #C9A08E; }
.amb-dot[data-a="lin"] { background: #C9B79E; }
.amb-dot[data-a="encre"] { background: #FBFAF8; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.amb-dot.active::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--accent); border-radius: 50%; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(26,20,16,0.92); backdrop-filter: blur(8px); display: none; place-items: center; padding: 5vw; }
.lightbox.show { display: grid; animation: fade .35s var(--ease); }
.lightbox .lb-inner { max-width: 620px; width: 100%; }
.lightbox .ph { aspect-ratio: 4/5; border-radius: var(--radius); }
.lightbox .lb-img { width: 100%; max-height: 76vh; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox .lb-cap { color: #fff; text-align: center; margin-top: 22px; }
.lightbox .lb-cap .cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.lightbox .lb-cap h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin-top: 6px; }
.lightbox .lb-close { position: fixed; top: 26px; right: 30px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; }
.lightbox .lb-close:hover { background: rgba(255,255,255,.12); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
body.reveal-snap .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .nav-cta .nav-social { display: none; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.12em; }
}
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .step { padding: 0 24px; }
  .step:nth-child(3) { border-left: none; padding-left: 0; }
  .masonry { columns: 2; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .seconde-grid { grid-template-columns: 1fr; gap: 48px; }
  .seconde-visual { max-width: 460px; }
  .about-portrait { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .strip-inner { flex-direction: column; }
  .strip .cell { border-left: none; border-top: 1px solid var(--line); }
  .strip .cell:first-child { border-top: none; }
  .craft-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; padding: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .hero-meta .sep { display: none; }
  .amb { right: 14px; bottom: 14px; padding-left: 14px; }
  .amb .lbl { display: none; }
}
