/**
 * @file 04-components.css
 * @project Nails-Manucure-v1
 * @description Composants partagés (header, hero, cartes, sections).
 * @version 1.0.0
 * @standards CSS Living Standard, WCAG 2.2
 * @updated 2026-04-26
 */

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */

/* Mobile-first header */
header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: clamp(12px, 2vw, 18px) clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-q), box-shadow 0.5s, padding 0.4s;
}

header.scrolled {
  background: rgba(250, 247, 244, 0.94);
  backdrop-filter: blur(24px);
  box-shadow: var(--sh-sm);
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--plum);
  line-height: 1.1;
}

.logo em {
  font-style: italic;
  color: var(--berry);
}

.logo small {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-family: var(--f-body);
  font-style: normal;
  margin-top: 1px;
}

/* Navigation desktop uniquement */
header nav {
  display: none;
}

@media (min-width: 1024px) {
  header nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

header nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color 0.25s;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--berry);
  transition: width 0.35s var(--ease-q);
}

header nav a:hover {
  color: var(--berry);
}

header nav a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
  background: var(--berry);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-e), box-shadow 0.3s;
}

.btn-nav:hover {
  background: var(--berry-dark);
  transform: scale(1.04);
  box-shadow: var(--sh-berry);
}

/* Hamburger visible sur mobile/tablet */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--plum);
  transition: transform 0.35s var(--ease-q), opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */

.m-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(160deg, var(--plum) 0%, #3d2535 50%, var(--berry-dark) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 100px 32px 60px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.m-nav::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(196, 134, 154, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.m-nav.open {
  transform: none;
}

.m-nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
  font-style: italic;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(40px);
  padding: 16px 0;
  position: relative;
}

.m-nav.open a {
  opacity: 1;
  transform: translateX(0);
}

.m-nav a:nth-child(1) { transition-delay: 0.08s; }
.m-nav a:nth-child(2) { transition-delay: 0.16s; }
.m-nav a:nth-child(3) { transition-delay: 0.24s; }
.m-nav a:nth-child(4) { transition-delay: 0.32s; }
.m-nav a:nth-child(5) { transition-delay: 0.40s; }
.m-nav a:nth-child(6) { transition-delay: 0.48s; }

.m-nav a::before {
  content: attr(data-num);
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  font-style: normal;
  color: var(--berry);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.m-nav a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--champagne));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-nav a:hover {
  color: var(--champagne);
  transform: translateX(8px);
}

.m-nav a:hover::after {
  width: 40px;
}

.m-nav .btn-nav-m {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.8rem;
  padding: 16px 40px;
  background: var(--berry);
  color: var(--white);
  border-radius: var(--r-full);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
  box-shadow: 0 8px 32px rgba(139, 58, 82, 0.4);
}

.m-nav.open .btn-nav-m {
  opacity: 1;
  transform: translateY(0);
}

.m-nav .btn-nav-m:hover {
  background: var(--rose);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(139, 58, 82, 0.5);
}

/* Fermeture améliorée du hamburger */
.hamburger.open {
  z-index: 1001;
}

.hamburger.open span {
  background: var(--ivory);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

/* Hero mobile-first */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .hero {
    grid-template-columns: 55% 45%;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-shape {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 80%;
  height: 60%;
  background-color: var(--rose-pale);
  background-image:
    linear-gradient(160deg, rgba(245, 232, 237, 0.55) 0%, rgba(247, 237, 225, 0.45) 55%, rgba(242, 236, 230, 0.65) 100%),
    url("/assets/img/technicienne-ongles-domicile.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 55%;
  border-radius: 0 0 0 40%;
  z-index: 0;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .hero-bg-shape {
    right: -60px;
    top: -60px;
    width: 70%;
    height: 100%;
    opacity: 0.6;
  }
}

@media (min-width: 1100px) {
  .hero-bg-shape {
    right: -80px;
    top: -80px;
    width: 58%;
    height: 130%;
    border-radius: 0 0 0 60%;
    opacity: 1;
  }
}

.deco-nail {
  position: absolute;
  background: var(--rose-pale);
  border-radius: var(--r-nail);
  opacity: 0.6;
  z-index: 1;
}

.dn-1 {
  width: 120px;
  height: 160px;
  bottom: 18%;
  right: 28%;
  background: var(--champagne-p);
  opacity: 0.8;
  transform: rotate(-15deg);
  animation: floatNail 7s ease-in-out infinite;
  rot: -15deg;
}

.dn-2 {
  width: 80px;
  height: 110px;
  top: 25%;
  right: 15%;
  background: var(--rose-pale);
  opacity: 0.9;
  transform: rotate(12deg);
  animation: floatNail 9s ease-in-out infinite reverse;
  rot: 12deg;
}

.dn-3 {
  width: 50px;
  height: 70px;
  bottom: 35%;
  right: 8%;
  background: var(--champagne-p);
  opacity: 0.5;
  transform: rotate(-5deg);
  animation: floatNail 6s ease-in-out infinite 2s;
  rot: -5deg;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 16px 60px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-left {
    padding: 120px 28px 72px;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .hero-left {
    padding: 140px 64px 80px 64px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  border-radius: var(--r-full);
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-q) 0.2s forwards;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--plum);
  min-height: 3.5em; /* CLS: reserve 3 lines for typewriter word changes */
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-q) 0.45s forwards;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 28px;
    line-height: 1.05;
    min-height: 2.3em; /* 2 lines on tablet+ */
  }
}

.hero h1 .italic {
  font-style: italic;
  color: var(--berry);
}

.hero h1 .typewriter {
  display: inline-block;
  color: var(--rose-deep);
  font-style: italic;
  min-width: 5.5em; /* CLS: widest word "semi-permanent" = ~13ch */
  padding-right: 5px;
  position: relative;
}
.hero h1 .typewriter::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 2px;
  background: var(--rose-deep);
  animation: blink 0.85s step-end infinite;
  will-change: opacity;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 460px;
  min-height: 10rem; /* CLS: reserve 5-6 lines on mobile regardless of font */
  contain: layout style; /* CLS: isolate from parent/child layout shifts */
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-q) 0.7s forwards;
}

.hero-desc strong {
  color: var(--plum);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-q) 0.95s forwards;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--berry);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.35s var(--ease-e), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--berry-dark);
  transform: scale(1.04);
  box-shadow: var(--sh-berry);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}

.btn-ghost:hover {
  color: var(--berry);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-q) 1.2s forwards;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-dark);
}

.stars-row {
  display: flex;
  gap: 2px;
  color: var(--champagne);
  font-size: 14px;
}

.hero-rating-text {
  font-size: 0.8rem;
  color: var(--text-mute);
  line-height: 1.4;
}

.hero-rating-text strong {
  display: block;
  color: var(--plum);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   HERO RIGHT (VISUEL)
═══════════════════════════════════════ */

.hero-right {
  display: none;
}

@media (min-width: 1100px) {
  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 24px 80px 40px;
    overflow: hidden;
  }
}

.hero-figure {
  position: absolute;
  right: -80px;
  bottom: -40px;
  z-index: 1;
  width: min(720px, 52vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 1s var(--ease-q) 0.95s forwards;
}

.hero-figure__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
  transform: scale(1.08);
  filter: drop-shadow(0 20px 60px rgba(44, 32, 40, 0.18));
}

.expert-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--sh-lg);
  max-width: 300px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-q) 1.1s forwards;
  position: relative;
  z-index: 5;
  margin-left: 20px;
  backdrop-filter: blur(10px);
}

.expert-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--berry), var(--rose), var(--champagne));
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.expert-card .ec-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--berry);
  font-weight: 600;
  margin-bottom: 10px;
}

.expert-card .ec-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 4px;
}

.expert-card .ec-title {
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin-bottom: 16px;
}

.certs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: var(--text-soft);
}

.cert-icon {
  width: 18px;
  height: 18px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.hero-pill {
  position: absolute;
  z-index: 4;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 8px 16px;
  box-shadow: var(--sh-md);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: pillAppear 1s var(--ease-q) forwards, floatPill 5s ease-in-out infinite;
}

.hp1 { top: 28%; right: 12%; animation-delay: 1.3s, 1.3s; }
.hp2 { top: 45%; right: 5%; animation-delay: 1.6s, 1.6s; }
.hp3 { top: 62%; right: 18%; animation-delay: 1.9s, 1.9s; }

.pill-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  margin-right: 6px;
}

.hero-scroll-cue {
  display: none;
}

@media (min-width: 1100px) {
  .hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 64px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards;
  }
}

.scroll-bar {
  width: 36px;
  height: 1px;
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}

.scroll-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--berry);
  animation: scanLine 2s ease-in-out infinite 2s;
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */

.marquee {
  background: var(--plum);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.mi {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 247, 244, 0.75);
  padding: 0 28px;
}

.mi .dot {
  color: var(--rose);
  margin: 0 12px;
  font-size: 8px;
  font-style: normal;
}

/* ═══════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════ */

.trust {
  background: var(--ivory-mid);
  padding: 20px 16px;
  border-bottom: 1px solid var(--ivory-dark);
}

@media (min-width: 768px) {
  .trust {
    padding: 24px 28px;
  }
}

@media (min-width: 1024px) {
  .trust {
    padding: 28px 64px;
  }
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .trust-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
  }
}

.ti {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ti-icon {
  width: 36px;
  height: 36px;
  background: var(--ivory);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--sh-sm);
}

.ti-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.ti-sub {
  font-size: 0.65rem;
  color: var(--text-mute);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-q), transform 0.8s var(--ease-q);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════ */

.sticky-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: rgba(44, 32, 40, 0.92);
  backdrop-filter: blur(20px);
  border-radius: var(--r-full);
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 900;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  white-space: nowrap;
}

.sticky-bar.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.sb-text {
  color: rgba(250, 247, 244, 0.8);
  font-size: 0.82rem;
}

.sb-text strong {
  color: var(--champagne);
}

.sb-cta {
  padding: 10px 22px;
  background: var(--berry);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.3s var(--ease-e);
}

.sb-cta:hover {
  background: var(--rose-deep);
  transform: scale(1.04);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer {
  background: var(--plum);
  color: rgba(250, 247, 244, 0.65);
  padding: 48px 16px 24px;
}

@media (min-width: 768px) {
  footer {
    padding: 60px 28px 32px;
  }
}

@media (min-width: 1024px) {
  footer {
    padding: 80px 64px 40px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-bottom: 32px;
}

.footer-grid > div:first-child {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer-grid > div:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }
  
  .footer-grid > div:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

.fb-logo {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 10px;
}

@media (min-width: 640px) {
  .fb-logo {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}

.fb-logo em {
  color: var(--rose-light);
  font-style: italic;
}

.fb-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: none;
}

@media (min-width: 640px) {
  .fb-desc {
    font-size: 0.8rem;
    line-height: 1.8;
    max-width: 260px;
  }
}

.fb-siret {
  font-size: 0.65rem;
  color: rgba(250, 247, 244, 0.50);
  margin-top: 12px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .fb-siret {
    font-size: 0.68rem;
    margin-top: 16px;
    line-height: 1.6;
  }
}

.fc h3 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 14px;
  font-weight: 600;
}

@media (min-width: 640px) {
  .fc h3 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
}

.fc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc ul li a {
  font-size: 0.75rem;
  transition: color 0.25s;
}

@media (min-width: 640px) {
  .fc ul li a {
    font-size: 0.8rem;
  }
}

.fc ul li a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding-top: 28px;
  }
}

.footer-bottom p {
  font-size: 0.72rem;
}

.fbl {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .fbl {
    gap: 20px;
    justify-content: flex-start;
  }
}

.fbl a {
  font-size: 0.72rem;
  transition: color 0.25s;
}

.fbl a:hover {
  color: var(--ivory);
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */

.breadcrumb {
  position: relative;
  max-width: var(--container, 1320px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 72px) clamp(16px, 3vw, 48px) clamp(16px, 2vw, 24px);
  font-size: var(--fs-label, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute, #8B7A84);
  border-bottom: 1px solid var(--ivory-dark, #F0EAE5);
}

.breadcrumb a {
  color: var(--berry, #8B3A52);
  text-decoration: none;
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: var(--berry-dark, #6D2A3E);
}

.breadcrumb strong {
  color: var(--plum, #2D1B28);
  font-weight: 600;
}

/* separator styling */
.breadcrumb .sep {
  display: inline-block;
  margin: 0 6px;
  color: var(--rose-light, #C4869A);
  font-weight: 300;
  font-size: 0.85em;
  transform: translateY(-1px);
}

