/* ===== Design tokens ===== */
:root {
  --bg-base: #F5F3EE;
  --bg-deep: #ECE9E1;
  --surface: #FFFFFF;
  --surface-raised: #F1EEE6;
  --stripe-dark: #E3DFD4;

  --border: rgba(28, 32, 26, 0.11);
  --border-soft: rgba(28, 32, 26, 0.07);

  --text-primary: #1C2420;
  --text-secondary: #414D45;
  --text-muted: #6C7A70;
  --text-faint: #97A39A;
  --text-stripe-label: #8B9990;

  --green: #4C7A54;
  --green-soft: rgba(76, 122, 84, 0.20);
  --green-soft-bg: rgba(76, 122, 84, 0.10);
  --green-soft-border: rgba(76, 122, 84, 0.30);
  --amber: #E2A63C;
  --amber-ink: #231A08;
  --amber-hover: #F0B856;
  --amber-soft: rgba(226, 166, 60, 0.10);
  /* Darker amber for text sitting directly on the light page background (eyebrows,
     logo accents) — the bright --amber above doesn't have enough contrast for that,
     but reads perfectly fine on buttons/pills (dark ink on top) or over a dark photo scrim. */
  --amber-text: #9C6A1E;

  /* Light text/UI reserved for content that sits over a dark photo scrim (hero,
     category/article headers) — the page's own text is dark now, but that scrim
     stays dark on purpose, so its overlaid text must stay light regardless of theme. */
  --text-on-photo: #F3F1EA;
  --text-on-photo-muted: #D8D6CD;

  --error: #B24A32;
  --error-bg: rgba(178, 74, 50, 0.10);

  /* Dark surfaces kept for photo scrims and the fullscreen lightbox, which stay dark
     regardless of site theme (readable overlay text, distraction-free photo viewing). */
  --ink-900: #0E1512;
  --ink-800: #161F1A;

  --font-display: 'Fraunces', serif;
  --font-label: 'Oswald', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --radius-card: 16px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --pad-x: clamp(20px, 5vw, 64px);

  --cat-primera-rfef: #E2A63C;
  --cat-segunda-rfef: oklch(74% 0.12 195);
  --cat-copa-del-rey: oklch(62% 0.19 27);
  --cat-tercera-rfef: oklch(72% 0.11 250);
  --cat-internacional-femenino: oklch(70% 0.14 310);
  --cat-liga-f: oklch(74% 0.15 350);
  --cat-entrenamientos: oklch(64% 0.03 150);
}

* { box-sizing: border-box; }
html { color-scheme: light; }
html, body { margin: 0; padding: 0; background: var(--bg-base); }
body { font-family: var(--font-body); color: var(--text-primary); min-height: 100vh; }
a { color: var(--amber-text); text-decoration: none; }
a:hover { color: var(--text-primary); }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.fv-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-base) 40%);
  font-family: var(--font-body);
  color: var(--text-primary);
}

.fv-eyebrow {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-text);
  margin: 0 0 18px;
}

.fv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--amber-ink);
  border: none;
  border-radius: 10px;
  padding: 14px 26px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.18s ease;
}
.fv-btn-primary:hover { background: var(--amber-hover); color: var(--amber-ink); }

.fv-btn-secondary {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.fv-btn-secondary:hover { border-color: var(--amber); color: var(--text-primary); }

.fv-field { display: flex; flex-direction: column; gap: 8px; }
.fv-field > span {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fv-field input, .fv-field textarea, .fv-field select {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
}
.fv-field input:focus, .fv-field textarea:focus, .fv-field select:focus { border-color: var(--green); }
.fv-field textarea { resize: vertical; }
.fv-field input.fv-invalid, .fv-field textarea.fv-invalid { border-color: var(--error); }

.fv-error { font-size: 12px; color: var(--error); }

.fv-placeholder {
  background: repeating-linear-gradient(135deg, var(--surface-raised), var(--surface-raised) 10px, var(--stripe-dark) 10px, var(--stripe-dark) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fv-placeholder--rounded { border-radius: var(--radius-card); overflow: hidden; }
.fv-placeholder span {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-stripe-label);
  text-align: center;
  padding: 0 8px;
}
.fv-photo { position: relative; width: 100%; }
.fv-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fv-badge {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #181510;
  width: fit-content;
  display: inline-block;
}
.fv-badge--inline { font-size: 10.5px; padding: 5px 10px; border-radius: var(--radius-pill); }
.fv-badge--overlay { position: absolute; top: 12px; left: 12px; font-size: 10.5px; padding: 5px 10px; border-radius: var(--radius-pill); }
.fv-badge--pill-lg { font-size: 12px; padding: 6px 12px; border-radius: var(--radius-pill); display: inline-block; }

.fv-confirm {
  padding: 26px;
  border-radius: 16px;
  background: var(--green-soft-bg);
  border: 1px solid var(--green-soft-border);
  max-width: 440px;
}
.fv-confirm__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 8px; color: var(--text-primary); }
.fv-confirm__desc { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===== Nav ===== */
.fv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 20;
}
.fv-nav__logo { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; font-size: 19px; color: var(--text-primary); text-transform: uppercase; }
.fv-nav__logo span { color: var(--amber-text); }
.fv-nav__links { display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 30px); font-family: var(--font-label); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); align-items: center; }
.fv-nav__links > a, .fv-nav__dropdown > button { color: var(--text-muted); cursor: default; }
.fv-nav__links > a { cursor: pointer; }
.fv-nav__links > a.is-active, .fv-nav__dropdown > button.is-active { color: var(--text-primary); }
.fv-nav__links > a:hover { color: var(--text-primary); }
.fv-nav__dropdown { position: relative; }
.fv-nav__dropdown > button { appearance: none; background: none; border: none; padding: 0; margin: 0; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.fv-nav__dropdown-menu {
  position: absolute; top: 24px; left: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 8px;
  display: flex; flex-direction: column; min-width: 200px;
  opacity: 0; pointer-events: none; transition: opacity 0.15s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.fv-nav__dropdown:hover .fv-nav__dropdown-menu,
.fv-nav__dropdown:focus-within .fv-nav__dropdown-menu,
.fv-nav__dropdown.is-open .fv-nav__dropdown-menu { opacity: 1; pointer-events: all; }
.fv-nav__dropdown-menu a { padding: 9px 12px; border-radius: 8px; font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.fv-nav__dropdown-menu a:hover { background: var(--border-soft); color: var(--text-primary); }
.fv-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

.fv-simple-nav { display: flex; align-items: center; justify-content: space-between; padding: 22px var(--pad-x); border-bottom: 1px solid var(--border-soft); }
.fv-simple-nav__logo { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; font-size: 19px; color: var(--text-primary); text-transform: uppercase; }
.fv-simple-nav__logo span { color: var(--amber-text); }
.fv-simple-nav__back { font-family: var(--font-label); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ===== Footer ===== */
.fv-footer-minimal { padding: 32px var(--pad-x); border-top: 1px solid var(--border-soft); font-size: 12px; color: var(--text-faint); }
.fv-footer-minimal a { color: var(--text-muted); }

.fv-footer-full { padding: 56px var(--pad-x) 40px; border-top: 1px solid var(--border-soft); position: relative; z-index: 2; }
.fv-footer-full__top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; margin-bottom: 40px; }
.fv-footer-full__brand { max-width: 300px; }
.fv-footer-full__logo { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; font-size: 19px; text-transform: uppercase; margin-bottom: 12px; }
.fv-footer-full__logo span { color: var(--amber-text); }
.fv-footer-full__brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.fv-footer-full__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.fv-footer-full__col-title { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin: 0 0 14px; }
.fv-footer-full__col-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.fv-footer-full__col-links a, .fv-footer-full__ig { color: var(--text-muted); }
.fv-footer-full__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border-soft); font-size: 12px; color: var(--text-faint); }

/* ===== Chat widget ===== */
@keyframes fv-pulse { 0% { transform: scale(0.85); opacity: 0.6; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes fv-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.fv-chat-fab { position: fixed; right: 24px; bottom: 24px; z-index: 50; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(150deg, var(--amber), #C98A28); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(226, 166, 60, 0.28), 0 2px 8px rgba(0, 0, 0, 0.4); }
.fv-chat-fab__pulse { position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--amber); opacity: 0.55; animation: fv-pulse 2.4s ease-out infinite; }
.fv-chat-fab__icon-close { display: none; }
.fv-chat-fab[aria-expanded='true'] .fv-chat-fab__pulse { display: none; }
.fv-chat-fab[aria-expanded='true'] .fv-chat-fab__icon-open { display: none; }
.fv-chat-fab[aria-expanded='true'] .fv-chat-fab__icon-close { display: block; }

.fv-chat-panel {
  position: fixed; z-index: 60; right: 24px; bottom: 100px; width: 388px; max-width: calc(100vw - 32px); height: min(600px, 78vh);
  border-radius: 18px; background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform-origin: bottom right; transform: scale(0.92) translateY(12px); opacity: 0; pointer-events: none;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s ease;
}
.fv-chat-panel.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
@media (max-width: 640px) {
  .fv-chat-panel { right: 0; left: 0; bottom: 0; top: 0; width: 100%; max-width: 100%; height: 100%; border-radius: 0; transform: translateY(16px); }
  .fv-chat-panel.is-open { transform: translateY(0); }
}
.fv-chat-panel__header { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid var(--border-soft); background: linear-gradient(180deg, rgba(92, 140, 99, 0.10), transparent); flex-shrink: 0; }
.fv-chat-panel__status { display: flex; align-items: center; gap: 6px; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin: 0 0 6px; }
.fv-chat-panel__status span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(92, 140, 99, 0.25); display: inline-block; }
.fv-chat-panel__header h2 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 3px; color: var(--text-primary); }
.fv-chat-panel__subtitle { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.fv-chat-panel__close { background: none; border: none; color: var(--text-muted); font-size: 22px; line-height: 1; cursor: pointer; padding: 2px 4px; }
.fv-chat-panel__messages { flex: 1; overflow-y: auto; padding: 18px 18px 8px; display: flex; flex-direction: column; gap: 12px; }
.fv-chat-panel__messages::-webkit-scrollbar { width: 6px; }
.fv-chat-panel__messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
.fv-chat-bubble { max-width: 84%; font-size: 14.5px; line-height: 1.5; padding: 11px 14px; border-radius: 14px; white-space: pre-wrap; }
.fv-chat-bubble--user { align-self: flex-end; background: var(--amber); color: var(--amber-ink); border-bottom-right-radius: 4px; font-weight: 500; }
.fv-chat-bubble--assistant { align-self: flex-start; background: var(--surface-raised); border: 1px solid var(--border-soft); border-bottom-left-radius: 4px; color: var(--text-primary); }
.fv-chat-typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px 16px; background: var(--surface-raised); border: 1px solid var(--border-soft); border-radius: 14px; border-bottom-left-radius: 4px; }
.fv-chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); display: inline-block; animation: fv-bounce 1.2s infinite ease-in-out; }
.fv-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.fv-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
.fv-chat-panel__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 18px 14px; flex-shrink: 0; }
.fv-chat-panel__chips[hidden] { display: none; }
.fv-chat-panel__chips button { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; padding: 8px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease; }
.fv-chat-panel__chips button:hover { border-color: var(--amber); color: var(--text-primary); }
.fv-chat-panel__form { display: flex; gap: 8px; padding: 14px 16px; border-top: 1px solid var(--border-soft); flex-shrink: 0; }
.fv-chat-panel__form input { flex: 1; background: var(--bg-deep); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.15s ease; }
.fv-chat-panel__form input:focus { border-color: var(--green); }
.fv-chat-panel__form button[type='submit'] { width: 42px; height: 42px; border-radius: 12px; background: var(--amber); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-chat-panel__form button[type='submit']:disabled { opacity: 0.5; cursor: default; }

/* ===== Lightbox ===== */
.fv-lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(6, 9, 7, 0.96); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; }
.fv-lightbox[hidden] { display: none; }
.fv-lightbox__close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--text-on-photo); font-size: 30px; cursor: pointer; }
.fv-lightbox__prev, .fv-lightbox__next { position: absolute; background: none; border: none; color: var(--text-muted); font-size: 36px; cursor: pointer; }
.fv-lightbox__prev { left: 24px; }
.fv-lightbox__next { right: 24px; }
.fv-lightbox__frame { width: min(900px, 80vw); aspect-ratio: 3/2; background: repeating-linear-gradient(135deg, var(--surface-raised), var(--surface-raised) 12px, var(--stripe-dark) 12px, var(--stripe-dark) 24px); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fv-lightbox__frame img { width: 100%; height: 100%; object-fit: contain; }
.fv-lightbox__frame span { font-family: var(--font-label); font-size: 13px; color: #4d5a51; text-transform: uppercase; }
.fv-lightbox__footer { display: flex; align-items: center; gap: 16px; margin-top: 18px; color: var(--text-muted); font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.03em; }
.fv-lightbox__action { background: none; border: 1px solid rgba(243, 241, 234, 0.2); color: var(--text-muted); border-radius: var(--radius-pill); padding: 6px 14px; cursor: pointer; transition: color 0.15s ease, border-color 0.15s ease; }
.fv-lightbox__action:hover { color: var(--text-primary); border-color: var(--amber); }

/* ===== Sidebar layout (home / categoría / crónica / noticia) ===== */
.fv-layout-with-sidebar { display: flex; align-items: flex-start; gap: 40px; max-width: 1280px; margin: 0 auto; padding: 0 var(--pad-x); }
.fv-layout-main { flex: 1; min-width: 0; }
.fv-sidebar { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; margin-top: 64px; }
@media (max-width: 900px) {
  .fv-layout-with-sidebar { flex-direction: column; }
  .fv-sidebar { width: 100%; position: static; margin-top: 0; }
}

.fv-sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 22px; }
.fv-sidebar-card__title { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin: 0 0 16px; }
.fv-sidebar-card__desc { font-size: 13px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.5; }

.fv-sidebar-card--brand .fv-sidebar-card__logo { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; font-size: 16px; text-transform: uppercase; margin: 0 0 10px; color: var(--text-primary); }
.fv-sidebar-card--brand .fv-sidebar-card__logo span { color: var(--amber-text); }
.fv-sidebar-card--brand .fv-sidebar-card__tagline { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 14px; }
.fv-sidebar-card__link { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--amber-text); }

.fv-sidebar-cats { display: flex; flex-direction: column; gap: 4px; }

.fv-sidebar-card--ad { padding: 12px; }
.fv-ad-slot { min-height: 90px; text-align: center; margin: 24px 0; }
.fv-ad-slot__label { display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.fv-sidebar-card--ad .fv-ad-slot { margin: 0; }
.fv-sidebar-cats a { display: flex; align-items: center; gap: 10px; padding: 7px 4px; border-radius: 8px; font-size: 13.5px; color: var(--text-muted); }
.fv-sidebar-cats a:hover { background: var(--border-soft); color: var(--text-primary); }

.fv-sidebar-feed { display: flex; flex-direction: column; gap: 14px; }
.fv-sidebar-feed__item { display: block; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); }
.fv-sidebar-feed__item:last-child { border-bottom: none; padding-bottom: 0; }
.fv-sidebar-feed__item h4 { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.35; margin: 0 0 6px; color: var(--text-primary); }
.fv-sidebar-feed__item span { font-family: var(--font-label); font-size: 11px; color: var(--text-faint); }

.fv-sidebar-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.fv-sidebar-newsletter-form input { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--text-primary); font-family: var(--font-body); font-size: 13.5px; outline: none; }
.fv-sidebar-newsletter-form .fv-btn-primary { justify-content: center; }

/* ===== Home ===== */
.fv-hero { position: relative; height: min(88vh, 780px); min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; }
.fv-hero .fv-hero__photo { position: absolute; inset: 0; }
.fv-hero__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14, 21, 18, 0.85) 0%, rgba(14, 21, 18, 0.45) 45%, rgba(14, 21, 18, 0.05) 100%); }
.fv-hero__content { position: relative; z-index: 2; max-width: 880px; padding: 0 var(--pad-x) 64px; }
.fv-hero__kicker { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.fv-hero__kicker span { width: 26px; height: 1px; background: var(--amber); display: inline-block; }
.fv-hero__content h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.98; letter-spacing: -0.01em; margin: 0 0 20px; color: var(--text-on-photo); }
.fv-hero__content h1 em { font-style: italic; font-weight: 500; color: var(--amber); }
.fv-hero__desc { font-size: 17px; line-height: 1.6; color: var(--text-on-photo-muted); max-width: 540px; margin: 0 0 30px; }
.fv-hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; row-gap: 12px; }

@media (max-width: 640px) {
  .fv-hero__content { padding-bottom: 110px; }
}
.fv-hero__score { font-family: var(--font-label); font-size: 22px; letter-spacing: 0.02em; color: var(--text-on-photo); }

.fv-section { padding: 64px var(--pad-x) 20px; position: relative; z-index: 2; }
.fv-hero + .fv-section { padding-top: 80px; }
.fv-section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; gap: 12px; }
.fv-section h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 28px; }
.fv-section__head h2 { margin: 0; }
.fv-section__head a { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

.fv-grid-destacados { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.fv-article-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease; }
.fv-article-card:hover { transform: translateY(-4px); border-color: rgba(226, 166, 60, 0.4); }
.fv-article-card__photo { position: relative; }
.fv-article-card__badge { position: absolute; inset: 0; pointer-events: none; }
.fv-article-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.fv-article-card__meta { display: flex; justify-content: space-between; gap: 10px; font-family: var(--font-label); font-size: 12.5px; color: var(--text-muted); }
.fv-article-card__score { color: var(--text-primary); font-weight: 600; }
.fv-article-card__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.25; margin: 0; color: var(--text-primary); }
.fv-article-card__excerpt { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.fv-article-card__date { font-size: 11.5px; color: var(--text-faint); margin: 6px 0 0; }

.fv-feed { display: flex; flex-direction: column; border-top: 1px solid var(--border-soft); }
.fv-feed__item { display: flex; align-items: center; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--border-soft); transition: background 0.15s ease; }
.fv-feed__item:hover { background: var(--border-soft); }
.fv-feed__item .fv-feed__thumb { width: 120px; height: 80px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.fv-feed__body { flex: 1; min-width: 0; }
.fv-feed__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.fv-feed__date { font-family: var(--font-label); font-size: 11.5px; color: var(--text-muted); }
.fv-feed__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; margin: 0 0 4px; color: var(--text-primary); }
.fv-feed__body p { font-size: 13px; color: var(--text-muted); margin: 0; }

.fv-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.fv-cat-card { position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; display: flex; align-items: flex-end; transition: opacity 0.15s ease; }
.fv-cat-card:hover { opacity: 0.9; }
.fv-cat-card .fv-cat-card__photo { position: absolute; inset: 0; }
.fv-cat-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11, 16, 13, 0.9), transparent 60%); }
.fv-cat-card__label { position: relative; z-index: 1; padding: 16px; }
.fv-cat-card__label h3 { font-family: var(--font-label); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; margin: 8px 0 0; color: var(--text-on-photo); }

.fv-ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }

.fv-newsletter { margin: 64px var(--pad-x); padding: 48px clamp(24px, 5vw, 56px); border-radius: 20px; background: linear-gradient(120deg, rgba(92, 140, 99, 0.14), rgba(226, 166, 60, 0.06)); border: 1px solid var(--border); position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.fv-newsletter__text { max-width: 440px; }
.fv-newsletter__text h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 0 0 8px; }
.fv-newsletter__text p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.fv-newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.fv-newsletter__form input { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; min-width: 240px; outline: none; }

/* ===== Categoría ===== */
.fv-cat-header { position: relative; height: 340px; display: flex; align-items: flex-end; overflow: hidden; }
.fv-cat-header .fv-cat-header__photo { position: absolute; inset: 0; }
.fv-cat-header__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14, 21, 18, 0.65) 0%, rgba(14, 21, 18, 0.05) 100%); }
.fv-cat-header__content { position: relative; z-index: 1; padding: 0 var(--pad-x) 36px; }
.fv-cat-header__pill { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); color: #181510; display: inline-block; margin: 0 0 14px; font-weight: 600; }

.fv-breadcrumbs { display: flex; align-items: center; gap: 7px; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-on-photo-muted); margin: 0 0 16px; flex-wrap: wrap; }
.fv-breadcrumbs a { color: var(--text-on-photo-muted); }
.fv-breadcrumbs a:hover { color: var(--text-on-photo); }
.fv-breadcrumbs__current { color: var(--text-on-photo); }
.fv-breadcrumbs__sep { opacity: 0.5; }
/* Plain (non-photo) headers, e.g. the standalone galería page — dark text on the light page bg. */
.fv-gallery-header .fv-breadcrumbs, .fv-gallery-header .fv-breadcrumbs a { color: var(--text-muted); }
.fv-gallery-header .fv-breadcrumbs a:hover { color: var(--text-primary); }
.fv-gallery-header .fv-breadcrumbs__current { color: var(--text-primary); }
.fv-cat-header__content h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0; color: var(--text-on-photo); }

.fv-cat-toolbar { padding: 36px var(--pad-x) 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.fv-cat-toolbar > p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.fv-cat-sorts { display: flex; gap: 10px; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.fv-cat-sorts button { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); background: transparent; color: var(--text-muted); }
.fv-cat-sorts button.is-active { border-color: var(--amber); color: var(--text-primary); }

.fv-cat-results { padding: 12px var(--pad-x) 80px; }
.fv-cat-subhead { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--text-primary); margin: 0 0 20px; }
.fv-cat-loadmore + .fv-cat-subhead { margin-top: 56px; }
.fv-cat-grid-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.fv-cat-gallery-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease; }
.fv-cat-gallery-card:hover { transform: translateY(-4px); border-color: rgba(226, 166, 60, 0.4); }
.fv-cat-gallery-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.fv-cat-gallery-card__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; margin: 0; color: var(--text-primary); }
.fv-cat-gallery-card__body p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.fv-cat-gallery-card__date { font-size: 11.5px; color: var(--text-faint); }
.fv-cat-loadmore { display: flex; justify-content: center; margin-top: 44px; }
.fv-cat-empty { padding: 60px 0; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ===== Crónica ===== */
.fv-article-header { position: relative; height: min(78vh, 640px); min-height: 440px; display: flex; align-items: flex-end; overflow: hidden; }
.fv-article-header .fv-article-header__photo { position: absolute; inset: 0; }
.fv-article-header__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14, 21, 18, 0.8) 0%, rgba(14, 21, 18, 0.4) 45%, rgba(14, 21, 18, 0.05) 100%); }
.fv-article-header__content { position: relative; z-index: 1; width: 100%; padding: 0 var(--pad-x) 0; }
.fv-article-header__pill { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); color: #181510; display: inline-block; margin: 0 0 20px; font-weight: 600; }
.fv-article-header__content h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.05; max-width: 820px; margin: 0 0 60px; color: var(--text-on-photo); }

.fv-scoreboard-wrap { position: relative; z-index: 2; padding: 0 var(--pad-x); margin-top: -46px; }

@media (max-width: 480px) {
  .fv-scoreboard-wrap { padding-right: calc(var(--pad-x) + 60px); }
}
.fv-scoreboard { display: flex; align-items: center; background: rgba(11, 16, 13, 0.9); border: 1px solid var(--border); border-radius: 14px; padding: 20px 28px; max-width: 640px; backdrop-filter: blur(6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.fv-scoreboard__team { flex: 1; text-align: center; min-width: 0; }
.fv-scoreboard__team p:first-child { font-family: var(--font-label); font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 8px; color: var(--text-on-photo); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv-scoreboard__score { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; margin: 0; color: var(--text-on-photo); }
.fv-scoreboard__ft { padding: 0 20px; font-family: var(--font-label); color: var(--green); font-size: 13px; text-transform: uppercase; }

.fv-article-body { max-width: 720px; margin: 0 auto; padding: 70px var(--pad-x) 24px; }
.fv-article-byline { font-family: var(--font-label); font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.04em; margin: 0 0 32px; }
.fv-body-p { font-size: 17px; line-height: 1.75; color: var(--text-secondary); margin: 0 0 20px; }
.fv-body-photo { display: block; max-width: min(320px, 60%); border: none; padding: 0; margin: 8px auto 32px; cursor: pointer; background: none; transition: opacity 0.15s ease; }
@media (max-width: 640px) {
  .fv-body-photo { max-width: 78%; }
}
.fv-body-photo img { display: block; width: 100%; height: auto; border-radius: 12px; }
.fv-body-photo:hover { opacity: 0.9; }

.fv-share-row { display: flex; gap: 10px; margin: 36px 0 8px; align-items: center; }
.fv-share-row span { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.fv-share-row button { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: transparent; color: var(--text-muted); transition: border-color 0.15s ease, color 0.15s ease; }
.fv-share-row button:hover { border-color: var(--amber); color: var(--text-primary); }

.fv-gallery-section { max-width: 1080px; margin: 0 auto; padding: 48px var(--pad-x) 0; }
.fv-gallery-section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.fv-gallery-section__head h2 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0; }
.fv-gallery-section__head span { font-family: var(--font-label); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.fv-gallery-section .fv-gallery-masonry { max-width: none; margin: 0; }

.fv-author-section { max-width: 720px; margin: 56px auto 0; padding: 0 var(--pad-x); }
.fv-author-card { display: flex; gap: 18px; align-items: center; padding: 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.fv-author-card__avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; background: repeating-linear-gradient(135deg, var(--surface-raised), var(--surface-raised) 6px, var(--stripe-dark) 6px, var(--stripe-dark) 12px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fv-author-card__avatar span { font-family: var(--font-label); font-size: 8px; color: var(--text-stripe-label); }
.fv-author-card__name { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; margin: 0 0 4px; color: var(--text-primary); }
.fv-author-card__bio { font-size: 13px; color: var(--text-muted); margin: 0 0 6px; line-height: 1.5; }
.fv-author-card__socials { display: flex; gap: 16px; }

.fv-related-section { max-width: 1080px; margin: 0 auto; padding: 56px var(--pad-x) 80px; }
.fv-related-section h2 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0 0 22px; }
.fv-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.fv-related-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.15s ease; }
.fv-related-card:hover { border-color: rgba(226, 166, 60, 0.4); }
.fv-related-card__body { padding: 16px 18px; }
.fv-related-card__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; margin: 0 0 6px; color: var(--text-primary); line-height: 1.3; }
.fv-related-card__body p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ===== Galería standalone ===== */
.fv-gallery-header { padding: 56px var(--pad-x) 28px; }
.fv-gallery-header__pill { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); color: #181510; display: inline-block; margin: 0 0 18px; font-weight: 600; }
.fv-gallery-header h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0 0 14px; max-width: 820px; }
.fv-gallery-header__desc { font-size: 15.5px; color: var(--text-muted); max-width: 600px; margin: 0 0 22px; line-height: 1.6; }

.fv-gallery-masonry-section { padding: 0 var(--pad-x) 80px; position: relative; }
.fv-gallery-masonry { max-width: 1200px; margin: 0 auto; columns: 3; column-gap: 10px; }
.fv-gallery-masonry__item { display: block; width: 100%; border: none; padding: 0; margin: 0 0 10px; cursor: pointer; break-inside: avoid; border-radius: 10px; overflow: hidden; }
.fv-exit-fullscreen { position: fixed; top: 20px; right: 24px; z-index: 40; background: rgba(11, 16, 13, 0.7); border: 1px solid rgba(243, 241, 234, 0.2); color: var(--text-on-photo); border-radius: var(--radius-pill); padding: 10px 18px; font-family: var(--font-label); font-size: 12px; text-transform: uppercase; }
body.fv-fullscreen .fv-gallery-masonry-section { padding: 20px; }
body.fv-fullscreen .fv-gallery-masonry { columns: 4; max-width: none; }
.fv-gallery-empty { padding: 60px var(--pad-x); text-align: center; color: var(--text-muted); }

/* ===== Sobre nosotros ===== */
.fv-about-hero { max-width: 760px; margin: 0 auto; padding: 80px var(--pad-x) 40px; text-align: center; }
.fv-about-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; margin: 0 0 22px; }
.fv-about-hero h1 em { font-style: italic; color: var(--amber); }
.fv-about-hero__desc { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin: 0; }
.fv-about-photo { max-width: 1000px; margin: 0 auto; padding: 40px var(--pad-x); }

.fv-timeline-section { max-width: 720px; margin: 0 auto; padding: 56px var(--pad-x); }
.fv-timeline-section h2, .fv-team-section h2, .fv-sellos-section h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 0 0 32px; }
.fv-sellos-section h2 { font-size: 22px; margin-bottom: 20px; }
.fv-timeline { display: flex; flex-direction: column; border-left: 1px solid var(--border); margin-left: 6px; }
.fv-timeline__item { position: relative; padding: 0 0 32px 28px; }
.fv-timeline__dot { position: absolute; left: -6.5px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 2px solid var(--bg-base); }
.fv-timeline__year { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin: 0 0 6px; }
.fv-timeline__item h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 6px; color: var(--text-primary); }
.fv-timeline__item p:last-child { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.fv-team-section { max-width: 1000px; margin: 0 auto; padding: 24px var(--pad-x) 56px; }
.fv-team-section__subtitle { font-size: 14px; color: var(--text-muted); margin: 0 0 28px; }
.fv-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.fv-team-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; }
.fv-team-card__avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px; background: repeating-linear-gradient(135deg, var(--surface-raised), var(--surface-raised) 6px, var(--stripe-dark) 6px, var(--stripe-dark) 12px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fv-team-card__avatar span { font-family: var(--font-label); font-size: 8px; color: var(--text-stripe-label); }
.fv-team-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 4px; color: var(--text-primary); }
.fv-team-card__role { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-text); margin: 0 0 10px; }
.fv-team-card__bio { font-size: 13px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.55; }
.fv-team-card--placeholder { border: 1px dashed var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-faint); }
.fv-team-card--placeholder__title { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 6px; }
.fv-team-card--placeholder p:last-child { font-size: 12.5px; margin: 0; }

.fv-sellos-section { max-width: 1000px; margin: 0 auto; padding: 24px var(--pad-x) 80px; }
.fv-sellos { display: flex; flex-wrap: wrap; gap: 10px; }
.fv-sello { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 9px 16px; border-radius: var(--radius-pill); color: #181510; }

/* ===== Contacto ===== */
.fv-contact { max-width: 1080px; margin: 0 auto; padding: 56px var(--pad-x) 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; }
.fv-contact__col h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 16px; }
.fv-contact__intro { font-size: 15.5px; color: var(--text-muted); line-height: 1.65; margin: 0 0 36px; max-width: 440px; }
.fv-contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 440px; }
.fv-contact__sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; align-self: start; }
.fv-contact__sidebar h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 20px; color: var(--text-primary); }
.fv-contact__sidebar-item { display: flex; flex-direction: column; gap: 4px; font-size: 14px; margin-bottom: 16px; }
.fv-contact__sidebar-item:last-child { margin-bottom: 0; }
.fv-contact__sidebar-item > p { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin: 0; }

/* ===== Acreditaciones ===== */
.fv-accred-header { max-width: 680px; margin: 0 auto; padding: 72px var(--pad-x) 8px; text-align: center; }
.fv-accred-header h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 16px; }
.fv-accred-header__desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.fv-profiles { max-width: 680px; margin: 0 auto; padding: 36px var(--pad-x) 8px; display: flex; gap: 16px; flex-wrap: wrap; }
.fv-profile-card { flex: 1; min-width: 220px; text-align: left; cursor: pointer; padding: 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); transition: background 0.15s ease, border-color 0.15s ease; }
.fv-profile-card.is-active { background: var(--amber-soft); border-color: var(--amber); }
.fv-profile-card__eyebrow { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.fv-profile-card.is-active .fv-profile-card__eyebrow { color: var(--amber-text); }
.fv-profile-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 8px 0 6px; color: var(--text-primary); }
.fv-profile-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.fv-accred-form-section { max-width: 680px; margin: 0 auto; padding: 24px var(--pad-x) 100px; }
.fv-accred-form { display: flex; flex-direction: column; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.fv-accred-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .fv-accred-form__row { grid-template-columns: 1fr; } }
.fv-accred-hint { font-size: 12px; color: var(--text-muted); }

/* ===== Legal ===== */
.fv-legal-header { max-width: 960px; margin: 0 auto; padding: 56px var(--pad-x) 20px; }
.fv-legal-tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.fv-legal-tab { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: transparent; color: var(--text-muted); }
.fv-legal-tab.is-active { border-color: var(--amber); background: var(--amber-soft); color: var(--text-primary); }
.fv-legal-header h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0; }
.fv-legal-updated { font-size: 13px; color: var(--text-faint); margin: 10px 0 0; }
.fv-legal-body { max-width: 960px; margin: 0 auto; padding: 20px var(--pad-x) 100px; display: flex; flex-wrap: wrap; gap: 48px; }
.fv-legal-nav { flex: 1 1 200px; position: sticky; top: 24px; align-self: start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px 16px; }
.fv-legal-nav a { padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--text-muted); }
.fv-legal-nav a:hover { background: var(--border-soft); color: var(--text-primary); }
.fv-legal-content { flex: 3 1 320px; min-width: 0; }
.fv-legal-section { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border-soft); scroll-margin-top: 24px; }
.fv-legal-section h2 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 12px; color: var(--text-primary); }
.fv-legal-section p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin: 0; }

/* ===== Admin ===== */
.fv-admin { min-height: 100vh; display: flex; font-family: var(--font-body); color: var(--text-primary); background: var(--bg-deep); }
.fv-admin__sidebar { width: 240px; flex-shrink: 0; border-right: 1px solid var(--border); padding: 24px 16px; display: flex; flex-direction: column; gap: 4px; }
.fv-admin__logo { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; font-size: 16px; color: var(--text-primary); text-transform: uppercase; padding: 0 8px 20px; display: block; }
.fv-admin__logo span.amber { color: var(--amber-text); }
.fv-admin__logo span.tag { color: var(--green); font-size: 11px; text-transform: none; letter-spacing: 0; }
.fv-admin__nav a { text-align: left; padding: 10px 12px; border-radius: 9px; font-family: var(--font-label); font-size: 13px; letter-spacing: 0.02em; background: transparent; color: var(--text-muted); border: none; cursor: pointer; display: block; }
.fv-admin__nav a.is-active { background: rgba(226, 166, 60, 0.10); color: var(--text-primary); }
.fv-admin__spacer { flex: 1; }
.fv-admin__view-site { padding: 10px 12px; font-size: 12.5px; color: var(--text-muted); }
.fv-admin__main { flex: 1; padding: 36px clamp(24px, 4vw, 48px); min-width: 0; }
.fv-admin__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.fv-admin__header h1 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 0 0 4px; }
.fv-admin__header p { font-size: 13px; color: var(--text-muted); margin: 0; }
.fv-admin-flash { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 13.5px; }
.fv-admin-flash--ok { background: var(--green-soft-bg); border: 1px solid var(--green-soft-border); color: var(--text-primary); }
.fv-admin-flash--error { background: var(--error-bg); border: 1px solid rgba(224, 143, 112, 0.4); color: var(--text-primary); }

.fv-admin-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.fv-admin-table__head { display: grid; padding: 12px 20px; background: var(--surface); font-family: var(--font-label); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.fv-admin-table__row { display: grid; align-items: center; padding: 14px 20px; border-top: 1px solid var(--border-soft); font-size: 13.5px; gap: 8px; }
.fv-admin-table__row .actions { display: flex; gap: 8px; }
.fv-admin-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); border-radius: 7px; padding: 6px 12px; font-size: 12px; cursor: pointer; text-decoration: none; display: inline-block; }
.fv-admin-btn:hover { color: var(--text-primary); border-color: var(--amber); }
.fv-admin-btn--danger:hover { border-color: var(--error); color: var(--error); }

.fv-admin-form { display: flex; flex-direction: column; gap: 18px; max-width: 720px; }
.fv-admin-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .fv-admin-form__row { grid-template-columns: 1fr; } }
.fv-admin-form .fv-field textarea { min-height: 90px; }
.fv-admin-photo-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 10px; }
.fv-admin-photo-list figure { margin: 0; position: relative; border-radius: 8px; overflow: hidden; background: var(--surface-raised); }
.fv-admin-photo-list img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.fv-admin-photo-list label { position: absolute; top: 4px; right: 4px; background: rgba(11, 16, 13, 0.75); border-radius: 6px; padding: 3px 6px; font-size: 10.5px; color: var(--text-on-photo); display: flex; align-items: center; gap: 4px; }
.fv-admin-dropzone { border: 1.5px dashed var(--border); border-radius: 12px; padding: 20px; text-align: center; }
.fv-admin-dropzone p { font-family: var(--font-label); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin: 0 0 10px; }

.fv-admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-deep); padding: 24px; }
.fv-admin-login__card { width: 100%; max-width: 360px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.fv-admin-login__card h1 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0 0 24px; text-align: center; }
.fv-admin-login__card form { display: flex; flex-direction: column; gap: 18px; }

.fv-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
