/* ==========================================================================
   CHEZ RUBEN — Design system
   Palette : noir profond · crème chaud · bordeaux · doré · vert profond
   ========================================================================== */

:root {
  /* Couleurs principales */
  --black: #0F0F0F;
  --black-soft: #181311;
  --black-deeper: #050505;

  --cream: #F5E6D3;
  --cream-warm: #FCF1E0;
  --cream-pale: #FAF4EA;
  --cream-deep: #E0CDB0;

  --bordeaux: #7A1E1E;
  --bordeaux-deep: #5a1414;
  --bordeaux-bright: #9a2a2a;

  --gold: #C6A15B;
  --gold-light: #DCB97A;
  --gold-deep: #9d7d3f;

  --green: #1F3A2E;
  --green-light: #2f5645;

  --ink: #2a1f1a;
  --ink-soft: #5a4a3e;
  --ink-mute: #8b7866;

  --line: rgba(198, 161, 91, 0.18);
  --line-cream: rgba(42, 31, 26, 0.10);
  --line-strong: rgba(42, 31, 26, 0.22);

  --shadow-sm: 0 4px 14px rgba(15, 15, 15, 0.10);
  --shadow-md: 0 14px 40px rgba(15, 15, 15, 0.14);
  --shadow-lg: 0 30px 80px rgba(15, 15, 15, 0.30);
  --shadow-warm: 0 20px 60px -10px rgba(122, 30, 30, 0.35);

  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  --t: cubic-bezier(0.65, 0, 0.35, 1);
  --t-slow: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1280px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-pale);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--t); }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--bordeaux); color: var(--cream); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--black);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.10em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--gold-light); }
.topbar-info { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 13px; height: 13px; color: var(--gold); }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.18em;
}
@media (max-width: 720px) {
  .topbar { font-size: 10.5px; }
  .topbar-info { gap: 14px; }
  .topbar-cta { display: none; }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
  transition: padding 0.3s var(--t);
  overflow: visible;
}
.nav.scrolled { padding: 10px 0; }
.nav .container { overflow: visible; }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}
.logo img {
  height: 220px;
  width: auto;
  display: block;
  margin: -80px 0;
  transition: transform 0.3s var(--t), height 0.3s var(--t), margin 0.3s var(--t);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
.logo:hover img { transform: scale(1.04); }
.nav.scrolled .logo img { height: 160px; margin: -55px 0; }
@media (max-width: 720px) {
  .logo img { height: 130px; margin: -45px 0; }
  .nav.scrolled .logo img { height: 100px; margin: -30px 0; }
}
.logo .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.logo .ornament {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--t);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--cream) !important;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--bordeaux);
  transition: all 0.35s var(--t);
  position: relative;
  box-shadow: 0 6px 18px -6px rgba(122, 30, 30, 0.50);
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  background: rgba(198, 161, 91, 0.20);
  border-radius: 50%;
  transition: width 0.6s var(--t), height 0.6s var(--t);
  pointer-events: none;
}
.nav-cta:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px -8px rgba(122, 30, 30, 0.65);
  transform: translateY(-1px);
}
.nav-cta:hover::before { width: 300px; height: 300px; }
.nav-cta svg { width: 14px; height: 14px; position: relative; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--bordeaux);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.menu-toggle svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--t-slow);
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse at top right, rgba(122, 30, 30, 0.30), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(198, 161, 91, 0.10), transparent 60%);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(245, 230, 211, 0.10);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
}
.mobile-menu a {
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: auto;
  padding: 18px 28px;
  background: var(--bordeaux);
  color: var(--cream);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

/* ===== BUTTONS — modernes, arrondis, dégradés ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.35s var(--t);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--t); position: relative; z-index: 2; }
.btn > * { position: relative; z-index: 2; }
.btn:hover svg { transform: translateX(4px); }

/* Effet ripple doré au survol */
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  background: rgba(198, 161, 91, 0.20);
  border-radius: 50%;
  transition: width 0.7s var(--t), height 0.7s var(--t);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { width: 360px; height: 360px; }

.btn-primary {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--cream);
  border-color: var(--bordeaux);
  box-shadow: 0 8px 22px -8px rgba(122, 30, 30, 0.55);
}
.btn-primary:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(122, 30, 30, 0.70);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 8px 22px -8px rgba(198, 161, 91, 0.50);
}
.btn-gold::before { background: rgba(15, 15, 15, 0.10); }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(198, 161, 91, 0.65);
}

.btn-ghost {
  border-color: rgba(245, 230, 211, 0.4);
  color: var(--cream);
  background: rgba(245, 230, 211, 0.04);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--ink);
  background: transparent;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(198, 161, 91, 0.55);
}

/* ===== SECTIONS ===== */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.dark { color: var(--gold-light); }
.eyebrow.dark::before { background: var(--gold-light); }

.h-display {
  font-family: 'Cinzel', serif;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.96;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: uppercase;
}
.h1 { font-size: clamp(40px, 6vw, 80px); line-height: 1.05; letter-spacing: 0.01em; }
.h2 { font-size: clamp(34px, 4.5vw, 60px); line-height: 1.08; letter-spacing: 0.01em; }
.h3 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; }

.italic-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}
.italic-bordeaux {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bordeaux);
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 680px;
  font-weight: 400;
}
.lead.dark { color: rgba(245, 230, 211, 0.78); }

/* ===== ORNAMENT SEPARATOR ===== */
.ornament-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--gold);
}
.ornament-sep .line { width: 60px; height: 1px; background: currentColor; opacity: 0.5; }
.ornament-sep .diamond {
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

/* ===== HERO BASE ===== */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  padding: 140px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-color: var(--black);
  filter: brightness(0.55) saturate(1.05);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(122, 30, 30, 0.3), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: rgba(245, 230, 211, 0.5);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: rgba(245, 230, 211, 0.7);
  padding: 100px 0 32px;
  border-top: 1px solid rgba(198, 161, 91, 0.18);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(122, 30, 30, 0.25), transparent 60%);
  pointer-events: none;
}
footer .container { position: relative; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}
@media (max-width: 920px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand .logo { color: var(--cream); font-size: 32px; margin-bottom: 24px; display: inline-flex; }
.footer-brand .logo img { height: 90px; width: auto; }
.footer-brand p {
  color: rgba(245, 230, 211, 0.65);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(198, 161, 91, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s var(--t);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col ul .closed { color: var(--gold-light); font-style: italic; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.10em;
  color: rgba(245, 230, 211, 0.4);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--t-slow), transform 0.9s var(--t-slow);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--t-slow), transform 0.9s var(--t-slow);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--black);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(0.30) saturate(1.1);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.5), rgba(15,15,15,0.85)),
    radial-gradient(ellipse at 70% 50%, rgba(122, 30, 30, 0.30), transparent 60%);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== HELPERS ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ===== MARQUEE BAND ===== */
.marquee-band {
  background: var(--black);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(198, 161, 91, 0.20);
  border-bottom: 1px solid rgba(198, 161, 91, 0.20);
  position: relative;
}
.marquee-band.gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold-deep);
}
.marquee-band.bordeaux {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--gold);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
}
.marquee-track .diamond {
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ORNAMENTS ===== */
.ornament-frame {
  border: 1px solid var(--gold);
  position: relative;
}
.ornament-frame::before, .ornament-frame::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.ornament-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.ornament-corner.tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.ornament-corner.tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.ornament-corner.bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.ornament-corner.br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

/* Dividers décoratifs */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 0;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  max-width: 200px;
}
.section-divider svg { width: 32px; height: 32px; color: var(--gold); }

/* Vintage number badge */
.vintage-num {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.vintage-num::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 80px;
  float: left;
  line-height: 0.8;
  margin: 6px 14px -4px 0;
  color: var(--bordeaux);
  font-weight: 600;
}

/* Floating action button (homepage) */
.fab-home {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--cream);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 14px 32px -8px rgba(122, 30, 30, 0.65);
  transition: all 0.35s var(--t);
  opacity: 0;
  transform: translateY(20px);
  text-decoration: none;
}
.fab-home.show { opacity: 1; transform: translateY(0); }
.fab-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(122, 30, 30, 0.80);
  border-color: var(--gold-light);
}
.fab-home svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .fab-home { padding: 14px 20px; font-size: 11px; right: 16px; bottom: 16px; }
}

/* Press / featured band */
.press-band {
  background: var(--cream-warm);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.press-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.press-logos {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  opacity: 0.75;
}
.press-logos span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}
.press-logos .gold { color: var(--gold-deep); font-weight: 500; }
@media (max-width: 720px) {
  .press-logos { gap: 28px; font-size: 18px; }
}
