:root {
  --font: "DM Sans", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --color-bg: #f3ebe2;
  --color-surface: #fffcf8;
  --color-text: #2a221c;
  --color-text-muted: #5c534c;
  --color-primary: #4a3428;
  --color-primary-hover: #3d2a21;
  --color-accent: #8b5a3c;
  --color-border: #e0d5c8;
  --color-hero: #2f2218;
  --shadow-sm: 0 2px 8px rgba(42, 34, 28, 0.06), 0 1px 2px rgba(42, 34, 28, 0.04);
  --shadow-md: 0 12px 32px rgba(42, 34, 28, 0.12), 0 4px 12px rgba(42, 34, 28, 0.06);
  --shadow-lg: 0 20px 50px rgba(42, 34, 28, 0.14), 0 8px 20px rgba(42, 34, 28, 0.08);
  --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --radius: 14px;
  --radius-product: 16px;
  --product-surface: #ffffff;
  --header-h: 5rem;
  --maxw: 72rem;
  --space: clamp(1rem, 3vw, 1.75rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-page: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-reveal: cubic-bezier(0.33, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ─── Noise grain overlay ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 160px 160px;
  mix-blend-mode: multiply;
}

/* ─── Display font on headings ─── */
h1, h2, h3,
.hero__title,
.section__title,
.card__title,
.cta-b2b h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .layout-page .site-header {
    animation: headerEnter 0.78s var(--ease-page) both;
  }

  .layout-page main {
    animation: pageEnter 0.95s var(--ease-page) both;
    animation-delay: 0.08s;
  }

  body.page-exit {
    opacity: 0;
    transition: opacity 0.44s var(--ease-reveal);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.85rem);
  transition:
    opacity 1.05s var(--ease-reveal),
    transform 1.05s var(--ease-reveal);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .layout-page main,
  .layout-page .site-header {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.page-exit {
    opacity: 1;
    transition: none;
  }

  .hero--motion::after {
    animation: none !important;
  }

  .card,
  .product-card {
    animation: none !important;
  }

  .card:hover,
  .product-card:hover {
    transform: none !important;
  }

  .card__media img,
  .product-card__img img {
    transition: none !important;
  }

  .card:hover .card__media img,
  .product-card:hover .product-card__img img {
    transform: none !important;
  }

  .btn:hover {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(139, 90, 60, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 30%, rgba(196, 168, 138, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212, 196, 180, 0.15), transparent 50%);
  background-attachment: fixed;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-primary);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 248, 0.88);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid rgba(224, 213, 200, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  border-bottom-color: rgba(224, 213, 200, 0.65);
}

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.75rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo:hover .logo__mark {
  filter: brightness(1.04);
}

.logo__mark {
  width: auto;
  height: clamp(3.35rem, 7.5vw, 4.5rem);
  max-width: min(18rem, 55vw);
  border-radius: 6px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.logo__mark:not(img) {
  width: clamp(3.35rem, 7.5vw, 4.5rem);
  max-width: none;
  background: linear-gradient(145deg, #6b4a38, #4a3428);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-primary);
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.22s var(--ease-out), border-color 0.22s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-accent);
  text-decoration: none;
}

.site-nav a.is-active {
  color: var(--color-accent);
}

@media (min-width: 960px) {
  .site-nav > ul > li > a {
    position: relative;
  }

  .site-nav > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    border-radius: 2px;
    background: var(--color-accent);
    transition: left 0.28s var(--ease-out), right 0.28s var(--ease-out);
  }

  .site-nav > ul > li > a:hover::after,
  .site-nav > ul > li > a.is-active::after {
    left: 0.5rem;
    right: 0.5rem;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block !important;
  }

  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav > ul > li {
    position: relative;
  }

  .site-nav > ul > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
  }

  .site-nav > ul > li > a:hover {
    background: rgba(139, 90, 60, 0.08);
  }

  .site-nav .has-submenu > a {
    padding-right: 1.5rem;
  }

  .site-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    padding: 0.5rem 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.25rem);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  }

  .site-nav .has-submenu:hover .submenu,
  .site-nav .has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .submenu a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 500;
  }

  .site-nav .submenu a:hover {
    background: var(--color-bg);
  }
}

@media (max-width: 959px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > ul {
    padding: 1rem var(--space) 1.5rem;
  }

  .site-nav > ul > li {
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav > ul > li:last-child {
    border-bottom: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
  }

  .site-nav .submenu {
    padding-left: 1rem;
    padding-bottom: 0.5rem;
  }

  .site-nav .submenu a {
    font-weight: 500;
    padding: 0.5rem 0;
  }

  .site-nav .has-submenu > a {
    pointer-events: none;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 1rem;
  }
}

main {
  min-height: 50vh;
}

.hero {
  position: relative;
  background: linear-gradient(155deg, #1e1610 0%, var(--color-hero) 38%, #5a3d2e 72%, #6b4a38 100%);
  color: #fdf9f4;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42, 34, 28, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 20%, rgba(255, 200, 150, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(0, 0, 0, 0.2), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.02) 3px,
      rgba(255, 255, 255, 0.02) 4px
    );
  pointer-events: none;
}

.hero.hero--home {
  background-color: #241a14;
  background-image: url("../assets/home/hands-2430200.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: clamp(28rem, 78vh, 56rem);
  padding: clamp(2.5rem, 8vw, 4rem) var(--space);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero.hero--home.hero--center::before {
  display: none;
}

.hero.hero--home.hero--center::after {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle min(62vmin, 36rem) at 50% 50%,
    rgba(10, 8, 7, 0.82) 0%,
    rgba(10, 8, 7, 0.52) 38%,
    rgba(10, 8, 7, 0.18) 68%,
    transparent 88%
  );
}

.hero__center-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__content {
  max-width: 30rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__content--center {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__text-block {
  min-width: 0;
  width: 100%;
}

.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 249, 244, 0.6);
  font-family: var(--font);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow {
    animation: fadeSlideUp 0.9s var(--ease-out) 0.1s both;
  }
  .hero__content--center .sub {
    animation: fadeSlideUp 0.9s var(--ease-out) 1s both;
  }
  .hero__pro {
    animation: fadeSlideUp 0.9s var(--ease-out) 1.1s both;
  }
  .hero__actions {
    animation: fadeSlideUp 0.9s var(--ease-out) 1.2s both;
  }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero.hero--home .hero__eyebrow {
  color: rgba(255, 252, 248, 0.9);
}

.hero.hero--home .sub {
  font-weight: 500;
  opacity: 1;
  color: rgba(255, 252, 248, 0.94);
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 0, 0, 0.35);
}

.hero__pro {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero__pro a {
  color: rgba(253, 249, 244, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 249, 244, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero.hero--home .hero__pro a {
  color: #fff8f2;
  border-bottom-color: rgba(255, 252, 248, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.hero__pro a:hover {
  color: #fff;
  border-bottom-color: rgba(253, 249, 244, 0.75);
}

.hero__pro-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero.hero--home.hero--center h1.hero__title {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 0, 0, 0.35);
}

.hero.hero--home.hero--center .hero__actions {
  justify-content: center;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero.hero--home {
    min-height: min(88vh, 36rem);
    padding: clamp(2rem, 6vw, 3rem) var(--space);
  }

  .hero.hero--home .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }

  .hero.hero--home .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero--motion::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 40%, rgba(212, 168, 120, 0.15), transparent 42%);
  animation: heroGlow 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(4%, 3%) scale(1.08);
    opacity: 1;
  }
}

.hero--inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero h1.hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

/* Text reveal */
.hero__title-wrap {
  overflow: hidden;
  padding-bottom: 0.08em;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__title-wrap .hero__title,
  .hero__title-wrap h1 {
    animation: titleReveal 1.1s var(--ease-spring) 0.25s backwards;
  }
}

@keyframes titleReveal {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Decorative rule below title */
.hero__rule {
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(253,249,244,0.8), rgba(196,168,138,0.6), transparent);
  margin: 0 auto 1.35rem;
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__rule {
    animation: ruleExpand 1s var(--ease-out) 0.85s both;
  }
}

@keyframes ruleExpand {
  from { width: 0; }
  to { width: clamp(4rem, 20vw, 9rem); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 252, 248, 0.65);
  border-bottom: 1.5px solid rgba(255, 252, 248, 0.65);
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__scroll-arrow:nth-child(1) {
    animation: arrowPulse 1.8s ease-in-out infinite;
  }
  .hero__scroll-arrow:nth-child(2) {
    animation: arrowPulse 1.8s ease-in-out 0.25s infinite;
  }
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 0.9; transform: rotate(45deg) translate(3px, 3px); }
}

.hero .lead {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  max-width: 42rem;
}

.hero .sub {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: 0.88;
  max-width: 40rem;
}

.hero--light {
  background: linear-gradient(160deg, #fdf8f2 0%, #f5ede2 45%, #ebe0d3 100%);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(42, 34, 28, 0.06);
  min-height: clamp(14rem, 32vh, 22rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.hero--light::before {
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 255, 255, 0.75), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(196, 168, 138, 0.1), transparent 50%);
  opacity: 1;
}

.hero.hero--light::after {
  display: none;
}

.hero--light h1 {
  color: var(--color-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero--light .hero__eyebrow {
  color: var(--color-accent);
  opacity: 0.75;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--light .lead {
    animation: fadeSlideUp 0.9s var(--ease-out) 1s both;
  }
  .hero--light .hero__actions {
    animation: fadeSlideUp 0.9s var(--ease-out) 1.1s both;
  }
}

.hero--light .lead,
.hero--light .sub {
  color: var(--color-text-muted);
  opacity: 1;
}

/* ─── Marquee band ─── */
.marquee-band {
  overflow: hidden;
  background: var(--color-primary);
  padding: 0.9rem 0;
  position: relative;
  z-index: 1;
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-primary), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 249, 244, 0.75);
  font-family: var(--font);
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-track {
    animation: marqueeScroll 32s linear infinite;
  }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-sep {
  color: var(--color-accent);
  opacity: 0.7;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s var(--ease-out), transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease-out);
  box-shadow: 0 2px 8px rgba(42, 34, 28, 0.12);
}

.btn:focus-visible {
  outline: 2px solid #f5e6d3;
  outline-offset: 2px;
}

.btn--primary {
  background: #f5e6d3;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}

.btn--primary:hover::after {
  left: 130%;
}

.btn--primary:hover {
  background: #fff;
  color: var(--color-primary-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 34, 28, 0.15);
}

.btn--ghost {
  background: rgba(255, 252, 248, 0.12);
  color: #fdf9f4;
  border: 1.5px solid rgba(253, 249, 244, 0.55);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 252, 248, 0.24);
  border-color: rgba(253, 249, 244, 0.9);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn--primary-light {
  background: rgba(245, 230, 211, 0.15);
  color: #fdf9f4;
  border: 1.5px solid rgba(245, 230, 211, 0.45);
  position: relative;
  overflow: hidden;
}

.btn--primary-light::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}

.btn--primary-light:hover::after {
  left: 130%;
}

.btn--primary-light:hover {
  background: rgba(245, 230, 211, 0.28);
  border-color: rgba(245, 230, 211, 0.85);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn--secondary {
  background: transparent;
  color: #fdf9f4;
  border: 2px solid rgba(253, 249, 244, 0.5);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fdf9f4;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.hero--light .btn--primary {
  background: var(--color-primary);
  color: #fdf9f4;
}

.hero--light .btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 8px 24px rgba(74, 52, 40, 0.35);
}

.hero--light .btn--secondary {
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.hero--light .btn--secondary:hover {
  background: rgba(139, 90, 60, 0.12);
  box-shadow: 0 4px 16px rgba(139, 90, 60, 0.2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--space);
  position: relative;
}

main > .section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--maxw));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 90, 60, 0.2), transparent);
  pointer-events: none;
}

main > .section:first-of-type::before {
  display: none;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.section__intro {
  margin: 0 0 2rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}

section:has(.product-grid) .section__title {
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

section:has(.product-grid):has(.section__intro) .section__title {
  margin-bottom: 0.35rem;
}

section:has(.product-grid) .section__intro {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(224, 213, 200, 0.75);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Card overlay style ─── */
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: riseIn 0.7s var(--ease-out) backwards;
  }

  .card:nth-child(1) { animation-delay: 0.05s; }
  .card:nth-child(2) { animation-delay: 0.14s; }
  .card:nth-child(3) { animation-delay: 0.23s; }
  .card:nth-child(4) { animation-delay: 0.32s; }
  .card:nth-child(n + 5) { animation-delay: 0.38s; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c4a88a 0%, #8b5a3c 100%);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease-out);
}

.card:hover .card__media img {
  transform: scale(1.07);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 10, 7, 0.88) 0%,
    rgba(15, 10, 7, 0.42) 42%,
    rgba(15, 10, 7, 0.08) 72%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem 1.5rem;
  transition: background 0.45s ease;
}

.card:hover .card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 10, 7, 0.94) 0%,
    rgba(15, 10, 7, 0.65) 48%,
    rgba(15, 10, 7, 0.2) 78%,
    transparent 100%
  );
}

.card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fdf9f4;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}

.card:hover .card__title {
  transform: translateY(-4px);
}

.card__reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.5s var(--ease-out),
    opacity 0.38s ease 0.06s,
    transform 0.45s var(--ease-out) 0.04s;
}

.card:hover .card__reveal {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}

.card__reveal p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(253, 249, 244, 0.82);
  font-family: var(--font);
}

/* keyboard/touch fallback: focus-within shows reveal */
.card:focus-within .card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 10, 7, 0.94) 0%,
    rgba(15, 10, 7, 0.65) 48%,
    rgba(15, 10, 7, 0.2) 78%,
    transparent 100%
  );
}

.card:focus-within .card__reveal {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18.5rem), 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

.product-card {
  height: 100%;
  background: var(--product-surface);
  border-radius: var(--radius-product);
  border: 1px solid rgba(210, 198, 182, 0.95);
  box-shadow:
    0 1px 2px rgba(42, 34, 28, 0.04),
    0 8px 24px rgba(42, 34, 28, 0.07),
    0 20px 40px -12px rgba(42, 34, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-spring), border-color 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card {
    animation: riseIn 0.5s var(--ease-out) backwards;
  }

  .product-grid .product-card:nth-child(1) {
    animation-delay: 0.02s;
  }
  .product-grid .product-card:nth-child(2) {
    animation-delay: 0.05s;
  }
  .product-grid .product-card:nth-child(3) {
    animation-delay: 0.08s;
  }
  .product-grid .product-card:nth-child(4) {
    animation-delay: 0.11s;
  }
  .product-grid .product-card:nth-child(5) {
    animation-delay: 0.14s;
  }
  .product-grid .product-card:nth-child(6) {
    animation-delay: 0.17s;
  }
  .product-grid .product-card:nth-child(7) {
    animation-delay: 0.2s;
  }
  .product-grid .product-card:nth-child(8) {
    animation-delay: 0.23s;
  }
  .product-grid .product-card:nth-child(9) {
    animation-delay: 0.26s;
  }
  .product-grid .product-card:nth-child(10) {
    animation-delay: 0.29s;
  }
  .product-grid .product-card:nth-child(11) {
    animation-delay: 0.32s;
  }
  .product-grid .product-card:nth-child(12) {
    animation-delay: 0.35s;
  }
  .product-grid .product-card:nth-child(n + 13) {
    animation-delay: 0.38s;
  }
}

.product-card:hover {
  box-shadow:
    0 2px 4px rgba(42, 34, 28, 0.06),
    0 16px 36px rgba(42, 34, 28, 0.12),
    0 28px 56px -16px rgba(74, 52, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  border-color: rgba(139, 90, 60, 0.32);
}

.product-card__img {
  flex-shrink: 0;
  aspect-ratio: 1;
  background: var(--product-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 5%, 1.35rem);
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease-out), filter 0.45s var(--ease-out);
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(42, 34, 28, 0.08));
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--product-surface);
}

.product-card__body h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--color-primary);
}

.product-card__body h3::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(196, 168, 138, 0.5));
  opacity: 0.75;
}

.product-card__body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--color-text-muted);
}

.cross-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.cta-b2b {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #2a1d14 0%, #1a110b 55%, #2d2018 100%);
  box-shadow: 0 20px 50px rgba(15, 10, 7, 0.3), 0 6px 20px rgba(15, 10, 7, 0.2);
}

.cta-b2b::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139, 90, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(196, 168, 138, 0.1), transparent 55%);
  pointer-events: none;
}

.cta-b2b::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 138, 0.5), rgba(245, 230, 211, 0.6), rgba(196, 168, 138, 0.5), transparent);
}

.cta-b2b__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.cta-b2b h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: #fdf9f4;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-b2b p {
  margin: 0 0 1.5rem;
  color: rgba(253, 249, 244, 0.65);
  font-size: 1rem;
}

.page-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.page-intro p {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
}

.checklist {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.checklist li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.contact-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(160deg, #ffffff, #faf6f0);
  border-radius: var(--radius);
  border: 1px solid rgba(224, 213, 200, 0.95);
  box-shadow: var(--shadow-sm), var(--shadow-inset-top);
}

.contact-block p {
  margin: 0.5rem 0;
  font-size: 1.05rem;
}

.contact-block a {
  font-weight: 600;
}

/* ─── Page Personnalisé ─── */

.perso-intro {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.perso-intro strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Gallery asymétrique */
.perso-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.perso-gallery__main {
  grid-row: span 2;
  overflow: hidden;
}

.perso-gallery__side {
  overflow: hidden;
}

.perso-gallery__wide {
  grid-column: span 2;
  overflow: hidden;
}

.perso-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.perso-gallery__main img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 28rem;
}

.perso-gallery__side img {
  aspect-ratio: 4 / 3;
}

.perso-gallery__wide img {
  aspect-ratio: 16 / 7;
}

.perso-gallery__main:hover img,
.perso-gallery__side:hover img,
.perso-gallery__wide:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .perso-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .perso-gallery__main {
    grid-row: span 1;
  }

  .perso-gallery__main img {
    min-height: unset;
    aspect-ratio: 4 / 3;
  }

  .perso-gallery__wide {
    grid-column: span 1;
  }
}

/* Process / étapes */
.perso-process {
  margin-bottom: 3.5rem;
  text-align: center;
}

.perso-process__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.perso-process__intro {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  font-size: 1rem;
}

.perso-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

@media (max-width: 640px) {
  .perso-steps {
    grid-template-columns: 1fr;
  }
}

.perso-step {
  background: linear-gradient(155deg, #ffffff, #faf5ef);
  border: 1px solid rgba(224, 213, 200, 0.9);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm), var(--shadow-inset-top);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.perso-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.perso-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent), rgba(196, 168, 138, 0.4));
  border-radius: 0 2px 2px 0;
}

.perso-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.35;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.perso-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.perso-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* CTA dark */
.perso-cta {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #2a1d14 0%, #1a110b 55%, #2d2018 100%);
  box-shadow: 0 20px 50px rgba(15, 10, 7, 0.3), 0 6px 20px rgba(15, 10, 7, 0.2);
}

.perso-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139, 90, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(196, 168, 138, 0.1), transparent 55%);
  pointer-events: none;
}

.perso-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 138, 0.5), rgba(245, 230, 211, 0.6), rgba(196, 168, 138, 0.5), transparent);
}

.perso-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.perso-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fdf9f4;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.15;
}

.perso-cta > .perso-cta__inner > p {
  margin: 0 0 2rem;
  color: rgba(253, 249, 244, 0.65);
  font-size: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.perso-cta__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.perso-cta__sep {
  color: rgba(196, 168, 138, 0.5);
  font-size: 1.5rem;
}

.perso-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.perso-cta__contact:hover {
  opacity: 0.8;
  text-decoration: none;
}

.perso-cta__contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font);
}

.perso-cta__contact-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #fdf9f4;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .perso-cta__sep {
    display: none;
  }
}

/* ─── Page Distributeurs ─── */

.distrib-gammes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .distrib-gammes {
    grid-template-columns: 1fr;
  }
}

.distrib-gamme {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #ffffff, #faf5ef);
  border: 1px solid rgba(224, 213, 200, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm), var(--shadow-inset-top);
}

.distrib-gamme__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg);
}

.distrib-gamme__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.distrib-gamme__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.distrib-gamme__body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.distrib-gamme__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.distrib-faits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(165deg, #ffffff, #faf5ef);
  border: 1px solid rgba(224, 213, 200, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm), var(--shadow-inset-top);
}

.distrib-faits p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.distrib-faits p strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Legacy : garde la compatibilité avec les autres pages si besoin */
.section--personnalise .page-intro:first-of-type {
  margin-bottom: 1.75rem;
}

.personnalise-carousel {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
}

.personnalise-carousel__viewport {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(224, 213, 200, 0.95);
  box-shadow: var(--shadow-sm), var(--shadow-inset-top);
  background: var(--color-surface);
}

.personnalise-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.45s ease;
}

.personnalise-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .personnalise-carousel__slide {
    transition: none;
  }
}

.personnalise-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.personnalise-carousel__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.35rem;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 480px) {
  .personnalise-carousel__controls {
    padding: 0 0.65rem;
  }
}

.personnalise-carousel__btn {
  pointer-events: auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(224, 213, 200, 0.9);
  background: rgba(255, 252, 248, 0.94);
  color: var(--color-primary);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.personnalise-carousel__btn:hover {
  background: #fff;
  color: var(--color-accent);
}

.personnalise-carousel__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.personnalise-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.personnalise-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(139, 90, 60, 0.32);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.personnalise-carousel__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.personnalise-carousel__dot:hover {
  background: rgba(139, 90, 60, 0.5);
}

.site-footer {
  margin-top: auto;
  padding: 2rem var(--space);
  border-top: 1px solid rgba(224, 213, 200, 0.85);
  background: linear-gradient(180deg, #f8f2ea 0%, #efe6dc 100%);
  box-shadow: 0 -8px 32px rgba(42, 34, 28, 0.05);
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer a {
  color: var(--color-text-muted);
}

.staply {
  font-size: 0.8rem;
}

.staply a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.staply a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

.layout-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
