/* =======================================================
   YAKIA — Artisanal / chaleureux
   Palette : bois chaud · laiton · crème · cuir
   Typos   : Fraunces (titres, serif) · Work Sans (corps)
   ======================================================= */

:root {
  --cream:       #F5EDDE;
  --cream-soft:  #EFE4CF;
  --cream-dim:   #E6D7BB;
  --paper:       #FBF6EC;
  --walnut:      #2E1F14;
  --walnut-2:    #3E2A1F;
  --walnut-3:    #5B3E2C;
  --brass:       #B8894A;
  --brass-hot:   #C79452;
  --brass-deep:  #8E6230;
  --ink:         #1B130D;
  --ink-60:      rgba(27, 19, 13, 0.66);
  --ink-40:      rgba(27, 19, 13, 0.42);
  --line:        rgba(62, 42, 31, 0.18);
  --line-light:  rgba(245, 237, 222, 0.18);

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 6px rgba(46, 31, 20, 0.08);
  --shadow:    0 18px 40px -18px rgba(46, 31, 20, 0.35);
  --shadow-lg: 0 28px 60px -24px rgba(46, 31, 20, 0.55);

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--brass); color: var(--paper); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Decorative paper grain on entire page ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(62, 42, 31, 0.055) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 2;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1240px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(251, 246, 236, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.3s ease,
    background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(251, 246, 236, 0.94);
  box-shadow: var(--shadow);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--walnut-2);
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--walnut-2);
  color: var(--brass-hot);
  border-radius: 50%;
}
.nav__logo-mark svg { width: 22px; height: 22px; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.nav__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut-3);
  margin-top: 4px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  color: var(--walnut-2);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__link:hover { background: var(--cream-dim); }
.nav__link.is-active {
  background: var(--walnut-2);
  color: var(--paper);
}
.nav__link--cta {
  background: var(--brass);
  color: var(--paper) !important;
  padding: 10px 20px;
  margin-left: 8px;
  transition: transform 0.25s var(--ease), background 0.25s ease,
    box-shadow 0.25s ease;
}
.nav__link--cta:hover {
  background: var(--brass-hot);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -14px rgba(184, 137, 74, 0.8);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.7px;
  background: var(--walnut-2);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex;
  align-items: center;
  scroll-margin-top: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.kicker--light { color: var(--brass-hot); }
.kicker--light::before { background: var(--brass-hot); }

.h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.08;
  color: var(--walnut);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-deep);
}
.h2--light { color: var(--cream); }
.h2--light em { color: var(--brass-hot); }

.lede {
  font-size: 1.08rem;
  color: var(--ink-60);
  max-width: 56ch;
  margin: 0 0 32px;
}
.lede--light { color: rgba(245, 237, 222, 0.78); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: "Work Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s ease,
    color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.btn::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  background: var(--walnut-2);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--walnut);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--walnut-2);
  border-color: var(--walnut-2);
}
.btn--ghost:hover {
  background: var(--walnut-2);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--brass);
  color: var(--paper);
}
.btn--gold:hover {
  background: var(--brass-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(184, 137, 74, 0.9);
}

/* ============ HERO ============ */
.hero {
  color: var(--paper);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(184, 137, 74, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(27, 19, 13, 0.35) 0%, rgba(27, 19, 13, 0.82) 70%, rgba(27, 19, 13, 0.94) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 237, 222, 0.28);
  background: rgba(27, 19, 13, 0.45);
  backdrop-filter: blur(6px);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-hot);
  box-shadow: 0 0 0 4px rgba(199, 148, 82, 0.25);
}

.hero__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(3rem, 8.4vw, 7rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 28px;
  max-width: 16ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-hot);
}

.hero__lede {
  max-width: 56ch;
  color: rgba(245, 237, 222, 0.82);
  font-size: 1.12rem;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero .btn--ghost {
  color: var(--paper);
  border-color: rgba(245, 237, 222, 0.55);
}
.hero .btn--ghost:hover {
  background: var(--paper);
  color: var(--walnut);
  border-color: var(--paper);
}

.hero__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(245, 237, 222, 0.85);
  font-size: 14px;
}
.hero__chips li { display: inline-flex; gap: 8px; align-items: center; }
.hero__chips span { color: var(--brass-hot); font-size: 10px; }

.hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 237, 222, 0.72);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: floaty 3.5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ============ SECTION — PARTICULIERS ============ */
.section--customers {
  background:
    radial-gradient(1000px 500px at 10% 0%, var(--cream-soft), transparent 60%),
    var(--cream);
}
.section__grid {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.section__grid--reverse { grid-template-columns: 1fr 1.05fr; }

.section__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.2deg);
}
.section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.section__media:hover img { transform: scale(1.04); }

.section__media-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--paper);
  color: var(--walnut-2);
  padding: 16px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.section__media-tag strong {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--brass-deep);
}
.section__media-tag span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-60);
}
.section__media-tag--dark {
  background: var(--walnut);
  color: var(--cream);
}
.section__media-tag--dark strong { color: var(--brass-hot); }
.section__media-tag--dark span { color: rgba(245, 237, 222, 0.75); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
}
.service-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 32px;
  align-items: baseline;
  transition: padding-left 0.3s var(--ease);
}
.service-list li:hover { padding-left: 14px; }
.service-list h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--walnut);
  margin: 0;
}
.service-list p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.98rem;
}

/* ============ SECTION — PROFESSIONNELS ============ */
.section--pros {
  background: var(--walnut);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--pros::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 237, 222, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 237, 222, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.section--pros::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.22), transparent 65%);
  pointer-events: none;
}

/* ============================================
   YAKIA — Section Professionnels (refonte)
   ============================================ */
.section--pros .pros__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

/* ---- HEADER ---- */
.pros__head {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.pros__head-text .lede { max-width: 52ch; }

/* Promo seal (sceau circulaire) */
.promo-seal {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  color: var(--brass-hot);
  transform: rotate(-8deg);
  animation: sealFloat 6s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-6px); }
}
.promo-seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: sealSpin 22s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }

.promo-seal__core {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%,
              #d8a45c 0%, #b8894a 55%, #8e6230 100%);
  color: var(--walnut);
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow:
    inset 0 -6px 20px rgba(46, 31, 20, 0.4),
    inset 0 4px 10px rgba(255, 245, 220, 0.5),
    0 18px 40px -18px rgba(0, 0, 0, 0.6);
  font-family: "Fraunces", serif;
}
.promo-seal__minus {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  margin-right: -4px;
}
.promo-seal__num {
  font-size: 88px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.promo-seal__pct {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  align-self: flex-start;
  margin-top: 14px;
}
.promo-seal__pin {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f1d9a8, #8e6230);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transform: translateX(-50%);
}

/* ---- PRODUCT CARDS ---- */
.pros__lots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.lot-card {
  position: relative;
  background: rgba(245, 237, 222, 0.04);
  border: 1px solid rgba(245, 237, 222, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  transition: transform 0.5s var(--ease), border-color 0.3s ease,
    background 0.3s ease;
}
.lot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 74, 0.55);
  background: rgba(245, 237, 222, 0.07);
}
.lot-card__tag {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--cream);
  color: var(--walnut);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 6px 14px -8px rgba(0,0,0,0.6);
}
.lot-card__media {
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--walnut);
}
.lot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.lot-card:hover .lot-card__media img { transform: scale(1.04); }

.lot-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brass);
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px -10px rgba(184, 137, 74, 0.9);
}

.lot-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 16px 4px;
}
.lot-card__foot h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0;
}
.lot-card__foot p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-hot);
}

/* ---- FOOTER NOTE ---- */
.pros__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(245, 237, 222, 0.05);
  border: 1px solid rgba(245, 237, 222, 0.12);
  border-radius: var(--radius);
}
.pros__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: rgba(245, 237, 222, 0.78);
  font-size: 14px;
}
.pros__bullets span { color: var(--brass-hot); margin-right: 6px; }

.pros__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--ghost-light {
  color: var(--cream);
  border-color: rgba(245, 237, 222, 0.55);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--walnut);
  border-color: var(--cream);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .pros__head { grid-template-columns: 1fr; gap: 36px; }
  .promo-seal { width: 200px; height: 200px; }
  .promo-seal__num { font-size: 72px; }
  .promo-seal__minus { font-size: 44px; }
  .promo-seal__pct { font-size: 30px; margin-top: 12px; }

  .pros__lots { grid-template-columns: 1fr; gap: 18px; }
  .lot-card__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pros__foot { flex-direction: column; align-items: flex-start; padding: 22px; }
}

/* ============ CONTACT ============ */
.section--contact {
  background:
    radial-gradient(800px 400px at 90% 0%, var(--cream-soft), transparent 60%),
    var(--paper);
}
.contact__grid {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
.contact__head {
  max-width: 640px;
}
.contact__infos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.contact__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 74, 0.45);
}
.contact__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--walnut-2);
  color: var(--brass-hot);
  margin-bottom: 18px;
}
.contact__card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--walnut);
  margin: 0 0 10px;
}
.contact__card p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
}
.contact__card a:not(.contact__link) {
  color: var(--brass-deep);
  font-weight: 500;
  transition: color 0.25s ease;
}
.contact__card a:not(.contact__link):hover { color: var(--brass); }
.contact__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--brass-deep);
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.contact__link:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}
.hours li:last-child { border-bottom: none; }
.hours li.is-closed {
  color: var(--ink-40);
  font-style: italic;
}
.hours li span:first-child { color: var(--walnut-3); }

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--walnut);
  color: rgba(245, 237, 222, 0.7);
  padding: 36px 24px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer__brand {
  font-family: "Fraunces", serif;
  color: var(--cream);
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.footer__meta { margin: 0 0 14px; }
.footer__copy { margin: 0; color: rgba(245, 237, 222, 0.45); }

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav { top: 10px; padding: 10px 14px; }
  .nav__tag { display: none; }
  .nav__menu {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__link { padding: 14px 16px; font-size: 15px; }
  .nav__link--cta { margin-left: 0; margin-top: 4px; text-align: center; }
  .nav__burger { display: block; }

  .section { padding: 110px 20px 70px; min-height: auto; }
  .section__grid,
  .section__grid--reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .section__media { aspect-ratio: 4 / 3; transform: none; }
  .section__media-tag { transform: none; }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .pro-cards { grid-template-columns: 1fr; }
  .contact__infos { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(2.6rem, 12vw, 4.2rem); }
}

@media (max-width: 520px) {
  .hero { padding: 130px 20px 90px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .btn { padding: 14px 22px; }
}

/* ============ MOTION REDUCE ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}


/* ============================================
   ANNOUNCE BAR (haut de page)
   ============================================ */
.announce {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--walnut) 0%, var(--walnut-3) 100%);
  color: var(--cream);
  border-bottom: 1px solid rgba(184, 137, 74, 0.35);
}
.announce.is-hidden { display: none; }

.announce__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 56px 11px 24px;
  position: relative;
  font-size: 14px;
}
.announce__inner p { margin: 0; flex: 1; }
.announce__inner strong { color: var(--brass-hot); font-weight: 600; }

.announce__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass-hot);
  box-shadow: 0 0 0 0 rgba(199, 148, 82, 0.7);
  animation: pulseDot 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(199, 148, 82, 0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(199, 148, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 148, 82, 0); }
}

.announce__link {
  font-weight: 500;
  color: var(--brass-hot);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}
.announce__link:hover { color: var(--cream); transform: translateX(3px); }

.announce__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(245, 237, 222, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.announce__close:hover { background: rgba(245, 237, 222, 0.1); color: var(--cream); }

/* Décale la nav fixe pour ne pas chevaucher le bandeau */
body:has(.announce:not(.is-hidden)) .nav { top: 60px; }

/* ============================================
   HERO — Eyebrow promo + sceau flottant
   ============================================ */
.hero__eyebrow--promo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  border: 1px solid rgba(199, 148, 82, 0.55);
  background: rgba(46, 31, 20, 0.55);
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    background 0.3s ease;
}
.hero__eyebrow--promo:hover {
  transform: translateY(-2px);
  border-color: var(--brass-hot);
  background: rgba(46, 31, 20, 0.75);
}
.hero__eyebrow-badge {
  background: var(--brass);
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.hero__eyebrow-text { color: var(--cream); }
.hero__eyebrow-arrow {
  margin-left: 4px;
  color: var(--brass-hot);
  transition: transform 0.3s var(--ease);
}
.hero__eyebrow--promo:hover .hero__eyebrow-arrow { transform: translateY(3px); }

/* Sceau flottant -30% dans le hero */
.hero-seal {
  position: absolute;
  z-index: 2;
  right: 5vw;
  top: 22%;
  width: 180px;
  height: 180px;
  color: var(--brass-hot);
  text-decoration: none;
  transform: rotate(-10deg);
  animation: heroSealFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.55));
}
.hero-seal:hover { transform: rotate(-6deg) scale(1.05); }

@keyframes heroSealFloat {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50%      { transform: rotate(-7deg) translateY(-8px); }
}

.hero-seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: heroSealSpin 24s linear infinite;
}
@keyframes heroSealSpin { to { transform: rotate(360deg); } }

.hero-seal__core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%,
              #e3b471 0%, #b8894a 55%, #8e6230 100%);
  color: var(--walnut);
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    inset 0 -6px 18px rgba(46, 31, 20, 0.4),
    inset 0 4px 10px rgba(255, 245, 220, 0.55);
  font-family: "Fraunces", serif;
}
.hero-seal__minus { font-size: 38px; font-weight: 500; line-height: 1; }
.hero-seal__num   { font-size: 64px; font-weight: 600; line-height: 0.9; letter-spacing: -0.04em; }
.hero-seal__pct   { font-size: 26px; font-weight: 500; align-self: flex-start; margin-top: 10px; }

@media (max-width: 960px) {
  .hero-seal {
    width: 130px; height: 130px;
    right: 14px; top: auto; bottom: 110px;
  }
  .hero-seal__core { inset: 16px; }
  .hero-seal__minus { font-size: 26px; }
  .hero-seal__num   { font-size: 46px; }
  .hero-seal__pct   { font-size: 20px; margin-top: 6px; }

  .announce__inner { padding: 10px 48px 10px 16px; font-size: 13px; }
  .announce__inner p { line-height: 1.4; }
}