/* =============================================================
   Cervecería Colón — Majadahonda
   Shared stylesheet
   1. Tokens
   ============================================================= */
:root {
  --cream:    #F7F0E1;
  --cream-2:  #EFE4CF;
  --paper:    #FFFDF8;
  --wine:     #6E1F2A;   /* burgundy — brand (toldo) */
  --wine-deep:#4E141C;
  --gold:     #B8924A;   /* brass / copper */
  --gold-soft:#D6B87E;
  --ink:      #271E19;   /* warm dark */
  --ink-soft: #5B4F47;
  --line:     rgba(39,30,25,0.14);
  --line-2:   rgba(39,30,25,0.08);

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow:    0 24px 55px -28px rgba(39,30,25,0.5);
  --shadow-sm: 0 12px 28px -18px rgba(39,30,25,0.4);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -0.005em; }
em { font-style: italic; }
::selection { background: var(--wine); color: var(--cream); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 5px; }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .65rem 1.1rem; background: var(--wine); color: var(--cream); z-index: 9999; border-radius: 999px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   3. View transitions
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .5s; animation-timing-function: cubic-bezier(0.16,1,0.3,1); }
::view-transition-old(root) { animation-name: vtOut; }
::view-transition-new(root) { animation-name: vtIn; }
@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { ::view-transition-old(root), ::view-transition-new(root) { animation: none; } }

/* =============================================================
   4. Layout utilities
   ============================================================= */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 900px) { .container { padding-inline: 2.5rem; } }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.center { text-align: center; margin-inline: auto; }

.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.eyebrow::before, .eyebrow.two-sided::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.eyebrow.center-line { justify-content: center; }

.section-head { max-width: 42rem; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-top: 0.8rem; }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.08rem; }

.divider-gold { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 1.4rem 0; }
.divider-gold.center { margin-inline: auto; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--sans); font-weight: 600; font-size: 0.96rem; letter-spacing: .01em; padding: 0.9rem 1.8rem; border-radius: 999px; transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out); }
.btn-primary { background: var(--wine); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); background: var(--wine-deep); box-shadow: 0 18px 34px -16px rgba(78,20,28,0.6); }
.btn-gold { background: var(--gold); color: #2a2013; box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(184,146,74,0.6); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--wine); background: var(--wine); color: var(--cream); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--wine); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-outline-light { border: 1.5px solid rgba(247,240,225,0.5); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--wine); border-color: var(--cream); transform: translateY(-3px); }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--wine); border-bottom: 2px solid var(--gold-soft); padding-bottom: 2px; transition: gap .3s var(--ease-out), border-color .3s var(--ease-out); }
.text-link:hover { gap: .7rem; border-color: var(--wine); }

/* =============================================================
   6. Nav
   ============================================================= */
.nav { position: fixed; top: 0; inset-inline: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.nav.on-dark:not(.is-scrolled) { color: var(--cream); }
.nav.on-dark:not(.is-scrolled) .nav-links a { color: var(--cream); }
.nav.on-dark:not(.is-scrolled) .nav-toggle span, .nav.on-dark:not(.is-scrolled) .nav-toggle::before, .nav.on-dark:not(.is-scrolled) .nav-toggle::after { background: var(--cream); }
.nav.on-dark:not(.is-scrolled) .nav-toggle { border-color: rgba(247,240,225,0.4); }
.nav.is-scrolled { background: rgba(247,240,225,0.9); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .l-main { font-family: var(--display); font-weight: 700; font-size: 1.42rem; letter-spacing: 0.01em; }
.logo .l-sub { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 940px) { .nav-links { display: flex; } }
.nav-links a { font-weight: 500; font-size: 0.96rem; position: relative; padding: .3rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 940px) { .nav-cta { display: inline-flex; padding: 0.6rem 1.3rem; } }
.nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--line); }
@media (min-width: 940px) { .nav-toggle { display: none; } }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle span { margin: 4.5px 0; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: 0; z-index: 90; background: var(--wine); color: var(--cream); display: grid; place-items: center; clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft); }
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.nav-mobile-list a { font-family: var(--display); font-size: 2.1rem; color: var(--cream); }
.nav-mobile-list a:hover { color: var(--gold-soft); }
.nav-mobile .phone { font-family: var(--sans); font-size: 1.05rem; color: var(--gold-soft); letter-spacing: .04em; margin-top: .8rem; }

/* =============================================================
   7. Reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }

/* =============================================================
   8. Home hero (full-bleed)
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-tint { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(39,20,24,0.55) 0%, rgba(39,20,24,0.35) 45%, rgba(30,15,18,0.9) 100%); }
.hero-inner { padding-block: 8rem 5rem; color: var(--cream); max-width: 46rem; }
.hero-inner .eyebrow { color: var(--gold-soft); }
.hero-inner .eyebrow::before { background: var(--gold-soft); }
.hero-title { font-size: clamp(2.8rem, 7vw, 5.6rem); color: var(--cream); margin-block: 1rem .3rem; }
.hero-title em { color: var(--gold-soft); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(247,240,225,0.9); max-width: 34rem; margin-top: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-facts { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; }
.hero-facts .f { display: flex; flex-direction: column; }
.hero-facts .f b { font-family: var(--display); font-size: 1.15rem; color: var(--gold-soft); }
.hero-facts .f span { font-size: 0.82rem; color: rgba(247,240,225,0.75); }
.scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(247,240,225,0.7); font-size: 0.72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 1; }
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--gold-soft), transparent); }

/* =============================================================
   9. Page hero (interior pages)
   ============================================================= */
.page-hero { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); margin-top: .7rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 42rem; margin-top: 1rem; }

/* =============================================================
   10. Feature (image + text)
   ============================================================= */
.feature { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; gap: 4rem; } .feature.reverse .feature-media { order: 2; } }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; position: relative; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media.tall { aspect-ratio: 4/5; }
.feature h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: .3rem; }
.feature p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }
.feature p + p { margin-top: .9rem; }
.badge-corner { position: absolute; top: 1rem; left: 1rem; background: var(--wine); color: var(--cream); font-size: 0.72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px; }

/* =============================================================
   11. Cards
   ============================================================= */
.cards { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-2 { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 3/2; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.3rem 1.4rem 1.6rem; }
.card-body h3 { font-size: 1.4rem; }
.card-body p { margin-top: .5rem; color: var(--ink-soft); font-size: 0.96rem; }
.card-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }

/* =============================================================
   12. Dark band
   ============================================================= */
.band-dark { background: var(--wine); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.band-dark .eyebrow { color: var(--gold-soft); }
.band-dark .eyebrow::before { background: var(--gold-soft); }
.band-dark h2 { color: var(--cream); font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.band-dark p { color: rgba(247,240,225,0.82); }
.band-stats { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .band-stats { grid-template-columns: repeat(3, 1fr); } }
.band-stats .s b { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold-soft); display: block; }
.band-stats .s span { color: rgba(247,240,225,0.75); font-size: 0.9rem; }

/* =============================================================
   13. Menu (carta)
   ============================================================= */
.menu-cats { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.8rem; }
.menu-cats a { font-size: 0.86rem; font-weight: 600; padding: .5rem 1.1rem; border-radius: 999px; background: var(--cream-2); color: var(--ink); transition: background .25s var(--ease-out), color .25s var(--ease-out); }
.menu-cats a:hover { background: var(--wine); color: var(--cream); }
.menu-section { margin-top: 3.5rem; scroll-margin-top: 100px; }
.menu-section:first-of-type { margin-top: 0; }
.menu-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/9; margin-bottom: 1.6rem; }
.menu-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-media.menu-media-square { aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto; }
.menu-media.menu-media-portrait { aspect-ratio: 4 / 5; max-width: 460px; margin-inline: auto; }
.menu-section-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.menu-section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); white-space: nowrap; }
.menu-section-head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-section-head .note { font-size: 0.84rem; color: var(--ink-soft); font-style: italic; }
.menu-list { display: grid; gap: 0.1rem; }
.menu-item { display: flex; align-items: baseline; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px dotted var(--line); }
.menu-item .mi-main { flex: 1; }
.menu-item .mi-name { font-family: var(--display); font-size: 1.2rem; font-weight: 600; }
.menu-item .mi-name .star { color: var(--gold); font-size: 0.9rem; margin-left: .3rem; }
.menu-item .mi-desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: .15rem; }
.menu-item .mi-price { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--wine); white-space: nowrap; }

/* =============================================================
   14. Gallery
   ============================================================= */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } }
.gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .7s var(--ease-soft); }
.gallery figure:hover img { transform: scale(1.05); }

/* =============================================================
   15. Map
   ============================================================= */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.95); }

/* =============================================================
   16. Info rows / hours
   ============================================================= */
.info-list { display: grid; gap: 0; }
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .ic { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.info-row .k { font-size: 0.74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.info-row .v { font-size: 1.05rem; margin-top: .1rem; }
.info-row .v a:hover { color: var(--wine); }

.hours { display: grid; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.hours .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.3rem; background: var(--paper); border-bottom: 1px solid var(--line-2); }
.hours .row:last-child { border-bottom: 0; }
.hours .row.is-today { background: var(--cream-2); }
.hours .row.is-closed .h { color: var(--wine); font-weight: 600; }
.hours .row .d { font-weight: 600; }
.hours .row .h { color: var(--ink-soft); text-align: right; }
.hours .today-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-left: .5rem; }

/* =============================================================
   17. Reservar form
   ============================================================= */
.res-grid { display: grid; gap: 2.5rem; }
@media (min-width: 920px) { .res-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: start; } }
.res-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-top: 1.1rem; }
.field:first-child { margin-top: 0; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field input, .field select, .field textarea { font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line); border-radius: 11px; padding: 0.8rem 1rem; transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(110,31,42,0.13); }
.field textarea { resize: vertical; min-height: 90px; }
.res-submit { margin-top: 1.6rem; width: 100%; }
.res-note { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }
.res-success { display: none; text-align: center; padding: 1.5rem 0; }
.res-success.is-visible { display: block; }
.res-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--wine); color: var(--cream); display: grid; place-items: center; margin: 0 auto 1.2rem; font-size: 1.7rem; }
.res-success h3 { font-size: 1.8rem; }
.res-success p { color: var(--ink-soft); margin-top: .6rem; }
.call-box { background: var(--wine); color: var(--cream); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.call-box .eyebrow { color: var(--gold-soft); justify-content: center; }
.call-box .eyebrow::before, .call-box .eyebrow::after { background: var(--gold-soft); }
.call-box .big { font-family: var(--display); font-size: clamp(1.9rem, 5vw, 2.6rem); color: var(--cream); margin-top: .4rem; display: inline-block; }
.call-box p { color: rgba(247,240,225,0.78); font-size: 0.92rem; margin-top: .5rem; }

/* =============================================================
   18. CTA final
   ============================================================= */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
.cta-final p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.1rem; max-width: 34rem; margin-inline: auto; }
.cta-final .btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { background: var(--ink); color: var(--cream); padding-block: 3.5rem 2.2rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .logo .l-main { color: var(--cream); font-size: 1.7rem; }
.footer-brand p { color: rgba(247,240,225,0.7); margin-top: .8rem; max-width: 24rem; font-size: 0.95rem; }
.footer h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(247,240,225,0.82); margin-bottom: .5rem; font-size: 0.96rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,240,225,0.15); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: rgba(247,240,225,0.6); font-size: 0.82rem; }

/* =============================================================
   20. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .card:hover, .btn:hover { transform: none; }
}
