/* ═══════════════════════════════════════════════════════════════════
   REY GUERRERO · GLOBAL.CSS
   Design system portable para páginas internas.
   El landing (/) tiene su propio CSS inline (sin tocar).
   Cuando edites tokens o chrome, mantén en sync con index.html :root.
═══════════════════════════════════════════════════════════════════ */


/* ── 0. View Transitions API (Chrome 111+, Safari 18+) ───────────
      Transición animada al navegar entre páginas same-origin.
      Degrada silente en browsers que no la soporten.                 */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-fade-in  { from { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
}


/* ── 1. DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Brand palette */
  --color-bg-dark:       #0A0807;
  --color-bg-deeper:     #050403;
  --color-text-light:    #F5F1EB;
  --color-text-muted:    rgba(245, 241, 235, 0.55);
  --color-text-faint:    rgba(245, 241, 235, 0.30);
  --color-accent-fire:   #D9531E;
  --color-accent-gold:   #C8601E;
  --color-accent-orange: #eda23b;

  /* Glass surfaces */
  --color-glass:         rgba(10, 8, 7, 0.40);
  --color-glass-border:  rgba(255, 255, 255, 0.08);
  --color-line:          rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-serif:   'Playfair Display', serif;
  --font-sans:    'Inter', sans-serif;

  /* Type scale (mantenido del landing) */
  --h1-size: clamp(2.8rem, 9vw, 6.5rem);
  --h2-size: clamp(2.5rem, 5vw, 4.5rem);
  --h3-size: clamp(1.2rem, 2.5vw, 1.8rem);

  /* Layout */
  --section-padding:     clamp(80px, 12vw, 160px);
  --container-max-width: 1200px;
  --content-max-width:   720px;
  --page-pad:            clamp(20px, 5vw, 64px);

  /* Motion */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:          cubic-bezier(.22, 1, .36, 1);
  --t-fast:            180ms;
  --t-base:            320ms;

  /* Z-index scale */
  --z-header:    106;
  --z-overlay:   200;
  --z-drawer:    210;
  --z-modal:     500;
}


/* ── 2. RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

button { font: inherit; cursor: pointer; }

::selection { background: var(--color-accent-gold); color: var(--color-bg-dark); }

/* Accessibility utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-to-content {
  position: absolute; top: -100px; left: 16px;
  background: var(--color-accent-gold); color: var(--color-bg-dark);
  padding: 12px 20px; font-weight: 600; z-index: 9999;
  text-decoration: none; border-radius: 4px;
  transition: top var(--t-fast) var(--ease-out);
}
.skip-to-content:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ══════════════════════════════════════════════════════════════════
   3. GLOBAL HEADER — desktop + mobile drawer
   Misma estructura visual que el landing.
   Markup canónico en _template/header.html
══════════════════════════════════════════════════════════════════ */
.global-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 0 5%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-header);
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: height 0.4s var(--ease-out),
              background 0.4s ease,
              transform 0.45s var(--ease-out);
}
.global-header.scrolled {
  height: 64px;
  background: rgba(10, 8, 7, 0.95);
}
.global-header.nav-hidden { transform: translateY(-100%); }

/* Logo */
.logo-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 0;
}
.logo-img {
  height: 52px; width: auto; display: block;
  transition: height 0.4s var(--ease-out);
}
.global-header.scrolled .logo-img { height: 42px; }

/* Desktop nav */
.nav-links {
  display: flex; gap: 24px;
  list-style: none; align-items: center;
}
.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.6;
  transition: opacity 0.25s ease, color 0.25s ease;
  position: relative;
  white-space: nowrap;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent-gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { opacity: 1; color: var(--color-accent-gold); }
.nav-links a.nav-active::after { width: 100%; }

.nav-sep-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.3);
  flex-shrink: 0; align-self: center;
}

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


/* ── 4. BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center; justify-content: center;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--color-text-light);
  color: var(--color-bg-dark);
  border-color: var(--color-text-light);
}

.btn-secondary {
  background-color: var(--color-text-light);
  color: var(--color-bg-dark);
  border: none;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background-color: var(--color-accent-gold);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent-gold);
  border: 1px solid rgba(200, 96, 30, 0.4);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: rgba(200, 96, 30, 0.08);
  border-color: var(--color-accent-gold);
}


/* ══════════════════════════════════════════════════════════════════
   5. HAMBURGER + MOBILE DRAWER
══════════════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  min-width: 44px; min-height: 44px;
  padding: 10px;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-toggle:hover {
  border-color: rgba(197, 160, 89, 0.4);
  background: rgba(197, 160, 89, 0.06);
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--color-text-light);
  transition: transform 0.4s var(--ease-out),
              opacity 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(4, 3, 2, 0.72);
  z-index: var(--z-overlay);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  background: linear-gradient(160deg, rgba(14,11,9,0.99) 0%, rgba(10,8,7,0.99) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: var(--z-drawer);
  padding: 80px 40px max(48px, env(safe-area-inset-bottom) + 24px);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  border-left: 1px solid rgba(197, 160, 89, 0.1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  padding: 0 20px 0 36px;
  display: flex;
  align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  flex-shrink: 0;
}
.mobile-nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.mobile-nav-brand { height: 38px; width: auto; opacity: 0.9; display: block; }

.mobile-nav-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(245, 241, 235, 0.55);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  flex-shrink: 0;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  color: var(--color-text-light);
  border-color: rgba(197, 160, 89, 0.4);
  background: rgba(197, 160, 89, 0.08);
  outline: none;
}
.mobile-nav-close svg { width: 18px; height: 18px; }

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-style: italic;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.38s var(--ease-out),
              transform 0.38s var(--ease-out),
              padding-left 0.28s var(--ease-out),
              color 0.25s ease;
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav-link::before {
  content: '';
  width: 0; height: 1px;
  background: var(--color-accent-gold);
  transition: width 0.28s var(--ease-out);
  flex-shrink: 0;
}
.mobile-nav.is-open .mobile-nav-link              { opacity: 0.6; transform: translateX(0); }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.06s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.11s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.21s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(6) { transition-delay: 0.26s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(7) { transition-delay: 0.31s; }
.mobile-nav-link.nav-active { opacity: 1; color: var(--color-accent-gold); }
.mobile-nav-link.nav-active::before { width: 16px; }
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  opacity: 1;
  color: var(--color-accent-gold);
  padding-left: 4px;
  outline: none;
  transition-delay: 0s !important;
}
.mobile-nav-link:hover::before,
.mobile-nav-link:focus-visible::before { width: 16px; }

.mobile-nav-ctas {
  margin-top: auto;
  padding-top: 36px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.mobile-nav.is-open .mobile-nav-ctas {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.36s;
}
.mobile-nav-ctas .btn-primary {
  text-align: center; width: 100%;
  display: flex; justify-content: center;
  box-sizing: border-box;
}


/* ══════════════════════════════════════════════════════════════════
   6. RESPONSIVE BREAKPOINTS para header/nav
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links   { display: none; }
  .header-ctas { display: none; }
  .nav-toggle  { display: flex; }
}
@media (min-width: 1025px) and (max-width: 1220px) {
  .nav-links { gap: 18px; }
}
@media (max-width: 600px) {
  .global-header { padding: 0 4%; }
  .logo-img { height: 40px; }
  .global-header.scrolled .logo-img { height: 34px; }
  .mobile-nav { padding: 80px 28px max(48px, env(safe-area-inset-bottom) + 24px); }
  .mobile-nav-head { padding: 0 16px 0 28px; }
}


/* ══════════════════════════════════════════════════════════════════
   7. BREADCRUMB — solo en internas
══════════════════════════════════════════════════════════════════ */
.breadcrumb {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 100px var(--page-pad) 20px;
  /* 100px top = 80px header + 20px breathing room */
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
.breadcrumb-list a:hover { color: var(--color-accent-gold); }
.breadcrumb-sep {
  color: rgba(197, 160, 89, 0.4);
  user-select: none;
}
.breadcrumb-list [aria-current="page"] {
  color: var(--color-text-light);
  font-weight: 500;
}


/* ══════════════════════════════════════════════════════════════════
   8. PAGE SHELL — layout genérico para internas
══════════════════════════════════════════════════════════════════ */
.page-main {
  min-height: 60vh;
  padding-top: 0;
}

/* Hero genérico para internas (sin imagen, solo título + lead) */
.page-hero {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px var(--page-pad) clamp(60px, 10vw, 120px);
  border-bottom: 1px solid var(--color-line);
}
.page-hero-overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--color-text-light);
}
.page-hero-title em {
  font-style: italic;
  color: var(--color-accent-gold);
}
.page-hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: var(--content-max-width);
}

/* Sección genérica */
.page-section {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--page-pad);
}
/* Cada .page-section mantiene su propio padding superior — los borders
   y títulos de sección necesitan breathing room. No colapsamos siblings
   (la regla previa pegaba títulos a separadores). */


/* ══════════════════════════════════════════════════════════════════
   9. PROSE — tipografía editorial (legales, articles, /investigacion/)
══════════════════════════════════════════════════════════════════ */
.prose {
  max-width: var(--content-max-width);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(245, 241, 235, 0.78);
}
.prose > * + * { margin-top: 1.2em; }

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-top: 2.4em;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-light);
  margin-top: 2em;
}
.prose h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-gold);
  margin-top: 1.8em;
}

.prose p { color: rgba(245, 241, 235, 0.78); }

.prose a {
  color: var(--color-accent-orange);
  text-decoration: underline;
  text-decoration-color: rgba(237, 162, 59, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-fast) var(--ease-out);
}
.prose a:hover { text-decoration-color: var(--color-accent-orange); }

.prose strong { color: var(--color-text-light); font-weight: 600; }
.prose em { font-style: italic; color: rgba(245, 241, 235, 0.9); }

.prose ul, .prose ol {
  padding-left: 1.4em;
  color: rgba(245, 241, 235, 0.78);
}
.prose li { margin-top: 0.4em; }
.prose ul li::marker { color: var(--color-accent-gold); }

.prose blockquote {
  border-left: 2px solid var(--color-accent-gold);
  padding: 0.5em 0 0.5em 1.4em;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2em;
  color: var(--color-text-light);
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: 3em 0;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.prose-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
  margin-bottom: 16px;
}


/* ══════════════════════════════════════════════════════════════════
   10. FAT FOOTER — mismo del landing
══════════════════════════════════════════════════════════════════ */
.fat-footer {
  background: #030303;
  padding: 100px 5% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fat-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fat-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent-gold);
  margin-bottom: 32px;
}

.fat-logo { height: 65px; width: auto; display: block; margin-bottom: 28px; opacity: 0.9; }
.fat-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-bottom: 36px;
}
.fat-tagline em { color: var(--color-accent-gold); }

.fat-socials { display: flex; flex-direction: column; gap: 14px; }
.social-link {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-link:hover { color: var(--color-accent-gold); }

.fat-address {
  font-style: normal;
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 36px;
}
.fat-address-link,
.fat-contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.fat-contact-group { display: flex; flex-direction: column; gap: 14px; }
.fat-address-link:hover,
.fat-contact-row:hover { color: rgba(255, 255, 255, 0.8); }
.fat-address-link svg,
.fat-contact-row svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent-gold);
  opacity: 0.7;
}

.fat-hours-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fat-press-kit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 36px;
  transition: color 0.3s;
}
.fat-press-kit:hover { color: var(--color-accent-gold); }
.fat-press-kit svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.kit-size {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 400;
}
.fat-press-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.fat-media-logos { display: flex; flex-direction: column; gap: 12px; }
.media-logo {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.media-logo:hover { color: rgba(255, 255, 255, 0.3); }

.fat-legal-nav {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
}
.fat-legal-nav a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.fat-legal-nav a:hover { color: rgba(255, 255, 255, 0.6); }

.fat-award-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 20px;
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.12);
}
.award-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-gold);
  margin-bottom: 4px;
}
.award-year {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.fat-footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .fat-footer-main { grid-template-columns: 1fr 1fr; gap: 50px; }
}
@media (max-width: 900px) {
  .fat-footer-main { grid-template-columns: 1fr; gap: 50px; }
  .fat-footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}
