/* ─── Grandioz Web Menu — cream/gold + Next.js layout ─── */

:root {
  --gold: #8a6030;
  --gold-light: #b08048;
  --gold-dim: #6a4820;
  --bg: #F7F3EC;
  --bg-card: #EDE8DF;
  --text: #111111;
  --text-dim: #7a6555;
  --text-muted: #333333;
  --line: rgba(138, 96, 48, 0.22);
  --header-h: 56px;
  --max: 760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

body.is-loading {
  overflow: hidden;
}

/* ─── Welcome splash ─── */
.welcome-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), visibility 1s;
}

.welcome-splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(138, 96, 48, 0.22) 0%, transparent 68%);
  pointer-events: none;
  animation: welcomePulse 2.8s ease-in-out infinite;
}

.welcome-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: welcomeFloat 3.2s ease-in-out infinite;
}

.welcome-particles span:nth-child(1) { top: 18%; left: 22%; animation-delay: 0.1s; }
.welcome-particles span:nth-child(2) { top: 28%; right: 18%; animation-delay: 0.6s; }
.welcome-particles span:nth-child(3) { bottom: 26%; left: 16%; animation-delay: 1.1s; }
.welcome-particles span:nth-child(4) { bottom: 20%; right: 24%; animation-delay: 0.4s; }
.welcome-particles span:nth-child(5) { top: 42%; left: 48%; animation-delay: 0.9s; width: 3px; height: 3px; }

.welcome-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.welcome-frame {
  position: relative;
  margin-bottom: 36px;
  animation: welcomeLogoIn 1.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.welcome-frame::before,
.welcome-frame::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(138, 96, 48, 0.55);
  border-style: solid;
  opacity: 0;
  animation: welcomeCorners 0.8s ease 0.55s both;
}

.welcome-frame::before {
  top: -10px;
  left: -10px;
  border-width: 1px 0 0 1px;
}

.welcome-frame::after {
  bottom: -10px;
  right: -10px;
  border-width: 0 1px 1px 0;
}

.welcome-logo {
  width: min(220px, 58vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(138, 96, 48, 0.12));
}

.welcome-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: welcomeTextIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.welcome-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  font-weight: 700;
}

.welcome-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--text);
}

.welcome-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 2px;
}

.welcome-divider i {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 96, 48, 0.55));
}

.welcome-divider i:last-child {
  background: linear-gradient(to left, transparent, rgba(138, 96, 48, 0.55));
}

.welcome-divider b {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.75;
}

.welcome-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.welcome-bar {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 50vw);
  height: 1px;
  background: rgba(138, 96, 48, 0.15);
  overflow: hidden;
}

.welcome-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: welcomeBar 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes welcomeLogoIn {
  from { opacity: 0; transform: translateY(18px) scale(0.94); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes welcomeTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes welcomeCorners {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes welcomePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

@keyframes welcomeFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  30%      { opacity: 0.55; }
  70%      { opacity: 0.25; transform: translateY(-18px); }
}

@keyframes welcomeBar {
  from { width: 0; }
  to   { width: 100%; }
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ─── Sticky header ─── */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.sticky-header.is-scrolled {
  background: rgba(247, 243, 236, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sticky-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.22em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sticky-header.is-scrolled .sticky-brand {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Page header ─── */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + 36px) 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(138, 96, 48, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ornament-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(138, 96, 48, 0.5));
  margin-bottom: 28px;
}

.ornament-line.bottom {
  margin: 32px 0 0;
  background: linear-gradient(to bottom, rgba(138, 96, 48, 0.4), transparent);
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 28px;
}

.carte-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.carte-row .rule {
  width: 40px;
  height: 1px;
  background: rgba(138, 96, 48, 0.4);
}

.carte-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(138, 96, 48, 0.8);
  font-weight: 700;
}

.page-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.ig-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  transition: color 0.25s ease, transform 0.25s ease;
}

.ig-link:hover {
  color: var(--gold);
  transform: scale(1.06);
}

.ig-link span {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.page-header-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 96, 48, 0.25), transparent);
}

/* ─── Category filter ─── */
.category-filter {
  padding: 0 0 36px;
  max-width: var(--max);
  margin: 0 auto;
}

.filter-scroll {
  position: relative;
}

.filter-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 24px 8px;
}

.filter-row::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  opacity: 1;
}

.filter-btn span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
}

.filter-accent {
  display: flex;
  align-items: center;
  gap: 3px;
}

.filter-accent i {
  display: block;
  height: 1px;
  width: 14px;
  background: rgba(138, 96, 48, 0.25);
  transition: background 0.25s ease;
}

.filter-accent b {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(138, 96, 48, 0.3);
  transition: background 0.25s ease;
}

.filter-btn.is-active .filter-accent i,
.filter-btn:hover .filter-accent i {
  background: rgba(138, 96, 48, 0.55);
}

.filter-btn.is-active .filter-accent b,
.filter-btn:hover .filter-accent b {
  background: var(--gold);
}

.filter-fade-l,
.filter-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
  z-index: 1;
}

.filter-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.filter-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.filter-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(122, 101, 85, 0.55);
}

/* ─── Sections ─── */
.menu-section {
  width: 100%;
  border-bottom: 1px solid rgba(138, 96, 48, 0.12);
  padding-bottom: 8px;
}

.menu-section:last-of-type {
  border-bottom: none;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-num-row .rule {
  width: 24px;
  height: 1px;
  background: rgba(138, 96, 48, 0.4);
}

.section-num {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(138, 96, 48, 0.7);
  font-weight: 700;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-dim);
}

.section-banner {
  max-width: var(--max);
  margin: 0 auto 36px;
  padding: 0 16px;
}

.section-banner-inner {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(138, 96, 48, 0.28);
  background: var(--bg-card);
}

.section-banner-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.9);
}

.section-banner-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(247, 243, 236, 0.2), transparent 35%, rgba(247, 243, 236, 0.35)),
    linear-gradient(to right, rgba(138, 96, 48, 0.06), transparent, rgba(138, 96, 48, 0.06));
  pointer-events: none;
}

.subsections {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 52px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sub-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sub-label-row .rule {
  flex: 1;
  height: 1px;
  background: rgba(138, 96, 48, 0.15);
}

.sub-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.sub-note {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
  margin: -6px 0 16px;
}

/* ─── Items ─── */
.menu-item {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(138, 96, 48, 0.1);
}

.menu-item:last-child {
  border-bottom: none;
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 3px;
}

.item-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
  line-height: 1.55;
}

.item-price {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
  margin-top: 2px;
}

.item-price .dt {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(138, 96, 48, 0.65);
  letter-spacing: 0.06em;
}

.price-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-opt {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 700;
  white-space: nowrap;
}

.price-opt strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  margin-left: 8px;
  font-weight: 700;
}

/* ─── Scroll indicator (desktop) ─── */
.scroll-rail {
  display: none;
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 240px;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.scroll-rail.is-visible { opacity: 1; }

.scroll-rail-track {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(138, 96, 48, 0.15);
}

.scroll-rail-fill {
  position: absolute;
  left: 6px;
  top: 0;
  width: 1px;
  height: 100%;
  transform-origin: top;
  background: linear-gradient(to bottom, rgba(138, 96, 48, 0.65), rgba(138, 96, 48, 0.1));
  transform: scaleY(0);
}

.scroll-rail-marker {
  position: absolute;
  left: 6px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  border: 1px solid rgba(138, 96, 48, 0.6);
  background: var(--bg);
  box-shadow: 0 0 8px rgba(138, 96, 48, 0.2);
  transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-rail-marker::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

@media (min-width: 1100px) {
  .scroll-rail { display: block; }
}

/* ─── Back to top ─── */
.back-top {
  position: fixed;
  right: 16px;
  bottom: 28px;
  z-index: 50;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(138, 96, 48, 0.3);
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: rgba(237, 232, 223, 1);
}

/* ─── Notre Histoire ─── */
.story-section {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  background: var(--bg-card);
}

.story-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 96, 48, 0.25), transparent);
}

.story-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
}

.story-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(64px, 18vw, 140px);
  color: rgba(138, 96, 48, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

.story-left,
.story-right {
  position: relative;
  z-index: 1;
}

.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.story-eyebrow .story-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.story-eyebrow p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 700;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

.story-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--text-dim);
}

.story-right {
  padding-left: 0;
  border-left: none;
}

.story-lead {
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 18px;
}

.story-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 28px;
}

.story-sign {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(122, 101, 85, 0.7);
}

@media (min-width: 768px) {
  .story-section { padding: 100px 40px; }

  .story-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .story-left { width: 42%; }
  .story-right {
    width: 58%;
    padding-left: 40px;
    border-left: 1px solid rgba(138, 96, 48, 0.18);
  }
}

/* ─── Localisation ─── */
.location-section {
  position: relative;
  padding: 80px 24px 96px;
  overflow: hidden;
  background: var(--bg);
}

.location-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.location-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(138, 96, 48, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(138, 96, 48, 0.06);
  margin-bottom: 28px;
  box-shadow: 0 0 28px rgba(138, 96, 48, 0.12);
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 18px;
}

.location-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.location-intro {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.location-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 96, 48, 0.2);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

.location-card:hover {
  border-color: rgba(138, 96, 48, 0.45);
}

.location-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.location-city {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text);
  font-weight: 700;
}

.location-country {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 6px;
}

.location-phone {
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 16px;
}

.location-map-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(138, 96, 48, 0.35);
  padding-bottom: 3px;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.location-map-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (min-width: 768px) {
  .location-section { padding: 100px 40px 112px; }
}

/* ─── Footer ─── */
.site-footer {
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(138, 96, 48, 0.14);
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-row .rule {
  width: 24px;
  height: 1px;
  background: rgba(138, 96, 48, 0.3);
}

.footer-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(122, 101, 85, 0.55);
  font-weight: 700;
}

.footer-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(122, 101, 85, 0.4);
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--gold);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .welcome-splash {
    transition: opacity 0.2s ease;
  }
}
