:root {
  --bg-dark: #140d09;
  --bg-deep: #24160f;
  --paper: #f2e4cf;
  --paper-soft: #ead7b4;
  --ink: #26160f;
  --muted: #7a6657;
  --gold-1: #6d4d1d;
  --gold-2: #a9782c;
  --gold-3: #d8b164;
  --gold-4: #f0dbab;
  --gold-5: #fff3d3;
  --line: rgba(216, 177, 100, 0.34);
  --line-soft: rgba(216, 177, 100, 0.18);
  --burgundy: #4c1f20;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  background:
    linear-gradient(rgba(14, 8, 5, 0.66), rgba(14, 8, 5, 0.76)),
    url('../images/victorian-backdrop.png') center top / cover fixed no-repeat;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255, 238, 200, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.14));
  mix-blend-mode: screen;
}

body.home .site-main,
body.page .site-main,
body.single .site-main {
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.04;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(3.2rem, 5.6vw, 6rem); }
h2 { font-size: clamp(2.3rem, 3.8vw, 4.3rem); }
h3 { font-size: clamp(1.7rem, 2.3vw, 2.4rem); }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(960px, 100%); margin-inline: auto; }
.center { text-align: center; }

.gold-line,
.footer-gold {
  height: 12px;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      var(--gold-2) 12%,
      var(--gold-5) 24%,
      var(--gold-3) 38%,
      var(--gold-5) 50%,
      var(--gold-3) 62%,
      var(--gold-5) 76%,
      var(--gold-2) 88%,
      rgba(0,0,0,0) 100%);
  box-shadow: 0 0 22px rgba(216, 177, 100, 0.34);
}

.top-note {
  background: linear-gradient(180deg, rgba(22, 13, 9, 0.96), rgba(41, 23, 16, 0.9));
  color: #f7e9c8;
  font-size: .92rem;
  border-bottom: 1px solid rgba(255, 233, 193, 0.12);
}
.top-note__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
}
.top-note a { color: var(--gold-5); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(33, 19, 13, 0.96), rgba(52, 31, 21, 0.92)),
    url('../images/victorian-backdrop.png') center / cover no-repeat;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 177, 100, 0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
}
.site-branding {
  display: flex;
  flex-direction: column;
  gap: .14rem;
}
.site-branding__small {
  text-transform: uppercase;
  letter-spacing: .34em;
  color: var(--gold-4);
  font-size: .7rem;
}
.site-branding__main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3vw, 3.8rem);
  color: var(--gold-5);
  text-shadow: 0 1px 0 rgba(0,0,0,.4), 0 0 18px rgba(216,177,100,.12);
}
.site-branding__tag {
  color: #dbc8aa;
  font-size: .82rem;
  letter-spacing: .08em;
}
.header-crest {
  display: flex;
  justify-content: center;
  padding: .25rem 0 .75rem;
}
.header-crest span {
  color: var(--gold-5);
  font-size: 1.16rem;
  padding: .18rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 100, 0.35);
  background: linear-gradient(180deg, rgba(82, 52, 23, 0.84), rgba(35, 20, 14, 0.84));
  box-shadow: inset 0 0 0 1px rgba(255, 244, 211, 0.08), 0 10px 24px rgba(0,0,0,.18);
}

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.main-nav .menu > li { position: relative; }
.main-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: .95rem 1rem;
  border-radius: 999px;
  color: #f3e6c7;
  position: relative;
  font-weight: 600;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}
.main-nav .menu > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255,243,211,.68), rgba(169,120,44,.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
.main-nav .menu > li:hover > a::before,
.main-nav .menu > li.current-menu-item > a::before,
.main-nav .menu > li.current-menu-ancestor > a::before { opacity: 1; }
.main-nav .menu > li:hover > a,
.main-nav .menu > li.current-menu-item > a,
.main-nav .menu > li.current-menu-ancestor > a {
  background: linear-gradient(180deg, rgba(216,177,100,.24), rgba(255,243,211,.10));
  color: var(--gold-5);
  transform: translateY(-1px);
}
.main-nav .menu > li.menu-item-has-children > a::after {
  content: '▾';
  margin-left: .55rem;
  color: var(--gold-4);
}
.main-nav .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + .8rem);
  min-width: 300px;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(41, 25, 17, 0.98), rgba(26, 16, 11, 0.98)),
    url('../images/victorian-backdrop.png') center / cover no-repeat;
  border: 1px solid rgba(216,177,100,.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
}
.main-nav .sub-menu::before,
.main-nav .sub-menu::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.main-nav .sub-menu::before {
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(240,219,171,.22);
}
.main-nav .sub-menu::after {
  inset: 2px;
  border-radius: 26px;
  border: 1px solid rgba(169,120,44,.32);
}
.main-nav .menu > li:hover > .sub-menu,
.main-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li a {
  display: block;
  padding: .9rem 1rem;
  border-radius: 16px;
  color: #f3e6c7;
}
.main-nav .sub-menu li a:hover {
  background: rgba(216,177,100,.12);
  color: var(--gold-5);
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(216,177,100,.42);
  background: linear-gradient(180deg, rgba(92,60,27,.96), rgba(31,18,12,.96));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}
.menu-toggle span { width: 20px; height: 2px; background: var(--gold-5); display: block; }

.hero-section,
.page-shell { padding: 6rem 0 3.8rem; }
.section-shell { padding: 4.4rem 0; }
.hero-grid,
.two-col,
.contact-grid,
.footer-grid { display: grid; gap: 2rem; }
.hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }
.two-col { grid-template-columns: 1fr 1fr; align-items: center; }
.contact-grid { grid-template-columns: .84fr 1.16fr; }
.footer-grid { grid-template-columns: 1.2fr .7fr .7fr; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold-2);
  font-size: .82rem;
  margin-bottom: 1rem;
}
.hero-text { color: #4f4035; font-size: 1.08rem; }
.mini-title { color: var(--gold-2); text-transform: uppercase; letter-spacing: .25em; font-size: .74rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #23150d;
  background: linear-gradient(180deg, var(--gold-5), var(--gold-3) 58%, var(--gold-2));
  box-shadow: 0 16px 36px rgba(169,120,44,.34), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-outline {
  border: 1px solid rgba(169,120,44,.5);
  color: #2c1b12;
  background: rgba(242,228,207,.86);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.card-frame,
.ornate-panel,
.service-card,
.portfolio-box,
.cta-frame,
.ornate-block {
  background:
    linear-gradient(180deg, rgba(248,236,215,.97), rgba(231,212,181,.95)),
    url('../images/victorian-backdrop.png') center / cover no-repeat;
  border: 1px solid rgba(216,177,100,.30);
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card-frame::before,
.ornate-panel::before,
.service-card::before,
.portfolio-box::before,
.cta-frame::before,
.ornate-block::before,
.card-frame::after,
.ornate-panel::after,
.service-card::after,
.portfolio-box::after,
.cta-frame::after,
.ornate-block::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.card-frame::before,
.ornate-panel::before,
.service-card::before,
.portfolio-box::before,
.cta-frame::before,
.ornate-block::before {
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(216,177,100,.22);
}
.card-frame::after,
.ornate-panel::after,
.service-card::after,
.portfolio-box::after,
.cta-frame::after,
.ornate-block::after {
  inset: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,243,211,.26);
}
.card-frame { padding: 3.2rem; }
.ornate-panel { padding: 1rem; }
.hero-panel__inner { padding: 2.1rem; }
.page-content { font-size: 1.04rem; }
.ornate-block { padding: 2.8rem; }

.card-frame .frame-corners,
.ornate-panel .frame-corners,
.cta-frame .frame-corners,
.ornate-block .frame-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.card-frame .frame-corners::before,
.card-frame .frame-corners::after,
.ornate-panel .frame-corners::before,
.ornate-panel .frame-corners::after,
.cta-frame .frame-corners::before,
.cta-frame .frame-corners::after,
.ornate-block .frame-corners::before,
.ornate-block .frame-corners::after {
  position: absolute;
  color: var(--gold-2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
  content: '❦';
  text-shadow: 0 0 10px rgba(255,243,211,.25);
}
.card-frame .frame-corners::before,
.ornate-panel .frame-corners::before,
.cta-frame .frame-corners::before,
.ornate-block .frame-corners::before { top: 16px; left: 24px; }
.card-frame .frame-corners::after,
.ornate-panel .frame-corners::after,
.cta-frame .frame-corners::after,
.ornate-block .frame-corners::after { bottom: 16px; right: 24px; }

.paper-page {
  position: relative;
  padding: 1.2rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(111,75,26,.68), rgba(42,25,17,.68));
  box-shadow: 0 0 0 1px rgba(255,241,208,.08), 0 30px 70px rgba(0,0,0,.40);
}
.paper-page::before,
.paper-page::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  pointer-events: none;
}
.paper-page::before {
  border: 2px solid rgba(216,177,100,.52);
  box-shadow: inset 0 0 0 1px rgba(255,243,211,.34), 0 0 22px rgba(216,177,100,.16);
}
.paper-page::after {
  inset: 24px;
  border: 1px solid rgba(255,243,211,.24);
}

.hero-copy,
.hero-panel,
.section-shell .container,
.page-shell .container { position: relative; z-index: 1; }

.lux-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .82rem;
}
.lux-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-2);
}

.section-heading { margin-bottom: 2rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.service-card { padding: 2.2rem; }
.service-card.wide { grid-column: span 2; }
.service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--burgundy);
  font-weight: 700;
}

.portfolio-slider {
  position: relative;
  padding: 0 70px;
}

.slider-track {
  position: relative;
  height: 520px;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 36px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.50), rgba(0,0,0,.10));
}

.slide span {
  position: relative;
  z-index: 2;
  color: #fff7ea;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  font-size: 2rem;
  line-height: 1;
  color: #2b180f;
  background: linear-gradient(180deg, var(--gold-5), var(--gold-3));
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 768px) {
  .portfolio-slider {
    padding: 0 52px;
  }

  .slider-track {
    height: 340px;
    min-height: 340px;
  }

  .slide {
    padding: 22px;
  }

  .slide span {
    font-size: 1.8rem;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
}

.dark-shell {
  background: transparent;
  color: #f7ecdb;
}
.dark-shell .paper-page {
  background: linear-gradient(180deg, rgba(102,65,28,.80), rgba(36,21,14,.92));
}
.dark-frame {
  background:
    linear-gradient(180deg, rgba(59,33,21,.94), rgba(23,13,9,.94)),
    url('../images/victorian-backdrop.png') center / cover no-repeat;
  color: #f8ecd8;
}
.dark-shell .eyebrow,
.dark-shell h2,
.dark-shell h3,
.dark-shell p,
.dark-shell a { color: #f7ecdb; }
.soft-shell { background: transparent; }

.contact-info p,
.page-content p,
.hero-copy p,
.service-card p { position: relative; z-index: 1; }

.site-footer {
  background:
    linear-gradient(180deg, rgba(21,12,8,.98), rgba(35,20,13,.98)),
    url('../images/victorian-backdrop.png') center / cover no-repeat;
  color: #f2e5cf;
  padding-top: 0;
  border-top: 1px solid rgba(216,177,100,.18);
}
.site-footer h3,
.site-footer h4 { color: #fff2dc; }
.site-footer a { color: var(--gold-5); }
.footer-grid { padding: 3rem 0 1.5rem; }
.footer-kicker {
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold-3);
  font-size: .74rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0 1.8rem;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav .menu {
    display: block;
    padding: 1rem;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(43,26,18,.98), rgba(23,14,10,.98)),
      url('../images/victorian-backdrop.png') center / cover no-repeat;
    border: 1px solid rgba(216,177,100,.36);
    box-shadow: var(--shadow);
  }
  .main-nav .menu > li > a {
    display: flex;
    justify-content: space-between;
    border-radius: 18px;
  }
  .main-nav .sub-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: .5rem;
  }
  .main-nav .menu > li.submenu-open > .sub-menu { display: block; }
  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .portfolio-grid,
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-box.large,
  .service-card.wide { grid-column: auto; }
  .top-note__inner {
    flex-direction: column;
    text-align: center;
    padding: .7rem 0;
  }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .header-inner { gap: 1rem; }
  .site-branding__main { font-size: 2.2rem; }
  .card-frame,
  .service-card,
  .cta-frame,
  .ornate-block { padding: 1.7rem; }
  .paper-page { padding: .85rem; border-radius: 28px; }
  .paper-page::before { inset: 8px; }
  .paper-page::after { inset: 16px; }
  .hero-section,
  .page-shell { padding: 4rem 0 2.8rem; }
  .section-shell { padding: 3rem 0; }
}


/* ===== FIX HEADER MAISON CLERFAYT ===== */

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .branding-wrap {
  flex: 0 1 360px;
  min-width: 0;
}

.site-header .site-branding {
  display: flex;
  flex-direction: column;
  gap: .14rem;
  max-width: 100%;
}

.site-header .main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.site-header .main-nav > ul,
.site-header .main-nav .menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  width: 100%;
  min-width: 0;
}

.site-header .main-nav > ul > li,
.site-header .main-nav .menu > li {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
}

.site-header .main-nav > ul > li > a,
.site-header .main-nav .menu > li > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-height: 1.1 !important;
  padding: .72rem .78rem !important;
  font-size: .92rem !important;
}

.site-header .main-nav > ul > li > a *,
.site-header .main-nav .menu > li > a * {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (min-width: 981px) {
  .site-header .menu-toggle {
    display: none !important;
  }
}
.site-header .branding-wrap {
  flex: 0 0 430px;
}

.site-header .branding-wrap {
  flex: 0 0 430px;
}

.site-header .main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

.site-header .main-nav .menu > li > a {
  padding: .7rem .78rem !important;
  font-size: .9rem !important;
}

.site-header .main-nav .menu {
  gap: 14px !important;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header .branding-wrap {
  flex: 0 1 460px !important;
  min-width: 380px;
}

.site-header .main-nav {
  flex: 1 1 auto !important;
  min-width: 0;
  display: flex !important;
  justify-content: flex-end !important;
}

.site-header .main-nav .menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}

.site-header .main-nav .menu > li {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}

.site-header .main-nav .menu > li > a {
  white-space: nowrap !important;
  padding: .7rem .72rem !important;
  font-size: .88rem !important;
}

/* ===== HEADER FINAL MAISON CLERFAYT ===== */

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Bloc logo */
.site-header .branding-wrap {
  flex: 0 1 440px;
  min-width: 360px;
}

.site-header .site-branding {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

/* Taille du logo (équilibré) */
.site-header .site-branding__main {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.05;
}

/* Menu */
.site-header .main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

/* UL du menu */
.site-header .main-nav .menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
}

/* Items */
.site-header .main-nav .menu > li {
  flex: 0 0 auto;
}

/* Liens */
.site-header .main-nav .menu > li > a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  padding: .7rem .85rem !important;
  font-size: .92rem !important;
  line-height: 1.1;
}

/* Sécurité anti retour ligne interne */
.site-header .main-nav .menu > li > a * {
  white-space: nowrap !important;
}

/* ===== HOVER LUXE ===== */

.site-header .main-nav .menu > li > a {
  position: relative;
  overflow: hidden;
}

/* ligne dorée */
.site-header .main-nav .menu > li > a::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 6px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-4), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
}

/* animation au survol */
.site-header .main-nav .menu > li > a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* état actif (page en cours) */
.site-header .main-nav .menu > li.current-menu-item > a::after {
  opacity: 1;
  transform: translateY(0);
}
.site-header .main-nav .menu > li > a:hover {
  color: var(--gold-5);
  text-shadow: 0 0 6px rgba(216,177,100,0.25);
}
.site-header .main-nav .menu > li.current-menu-item > a {
  background: linear-gradient(
    180deg,
    rgba(216,177,100,.25),
    rgba(255,243,211,.08)
  );
  box-shadow: inset 0 0 0 1px rgba(255,243,211,.15);
}


/* CTA */
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  background: linear-gradient(
    180deg,
    var(--gold-5),
    var(--gold-3) 60%,
    var(--gold-2)
  );
  color: #2b1a10;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 12px 28px rgba(169,120,44,.25);
}
.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(169,120,44,.35);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(216,177,100,.5);
  color: var(--gold-5);
}

.btn-outline:hover {
  background: rgba(216,177,100,.1);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216,177,100,.45);
  color: #f3e6c7;
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

/* Hover élégant */
.btn-outline:hover {
  background: rgba(216,177,100,.12);
  border-color: var(--gold-4);
  color: var(--gold-5);
  box-shadow: 0 10px 24px rgba(216,177,100,.18);
  transform: translateY(-1px);
}
.btn {
  letter-spacing: 0.05em;
}

.hero-actions .btn-outline,
.hero-actions a.btn-outline {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  ) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 8px 18px rgba(0,0,0,0.05) !important;
}
.hero-actions .btn-outline:hover,
.hero-actions a.btn-outline:hover {
  background: linear-gradient(
    180deg,
    rgba(216,177,100,0.16),
    rgba(216,177,100,0.08)
  ) !important;
}
.hero-actions .btn-outline,
.hero-actions a.btn-outline {
  color: #8a6620 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}