@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ========================================
   KF VOTE LOGO-INSPIRED DESIGN SYSTEM
   White Background | Deep Navy + Gold
   ======================================== */

:root {
  /* Primary - Deep Navy (from logo) */
  --primary-900: #0a1428;
  --primary-800: #0f1f3d;
  --primary-700: #142d55;
  --primary-600: #1a3d72;
  --primary-500: #1f4f8a;
  --primary-400: #2a66a8;
  --primary-300: #4a84c9;
  --primary-200: #7aa8db;
  --primary-100: #b5cde8;
  --primary-50: #e6eef7;
  --primary-gradient: linear-gradient(135deg, #1a3d72 0%, #1f4f8a 50%, #2a66a8 100%);

  /* Accent - Premium Gold (from logo) */
  --accent-900: #6b3f0a;
  --accent-800: #8a5210;
  --accent-700: #a86618;
  --accent-600: #c47b1a;
  --accent-500: #d48c2c;
  --accent-400: #e0a042;
  --accent-300: #e8b84c;
  --accent-200: #f0cc70;
  --accent-100: #f5e0a0;
  --accent-50: #faf2e0;
  --accent-gradient: linear-gradient(135deg, #c47b1a 0%, #d48c2c 40%, #e8b84c 100%);
  --accent-glow: 0 4px 20px rgba(212, 140, 44, 0.25);

  /* Secondary - Refined Slate */
  --secondary-600: #1e293b;
  --secondary-500: #334155;
  --secondary-400: #475569;
  --secondary-300: #64748b;
  --secondary-200: #94a3b8;

  /* Neutral - Clean Grays on White */
  --ink: #0a1428;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Surfaces - Clean White */
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --surface-border: #e2e8f0;
  --surface-hover: #f8fafc;

  /* Semantic */
  --success: #0f7b3e;
  --success-bg: #e6f5ed;
  --warning: #b0760a;
  --warning-bg: #fdf3e0;
  --error: #b91c3a;
  --error-bg: #fde8ec;

  /* Hero - Navy Gradient with White Text */
  --hero-gradient: linear-gradient(165deg, #0a1428 0%, #0f1f3d 20%, #1a3d72 50%, #1f4f8a 70%, #2a66a8 100%);
  --hero-overlay: radial-gradient(ellipse at 70% 30%, rgba(42, 102, 168, 0.10) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(212, 140, 44, 0.08) 0%, transparent 50%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  /* Text Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 2.75rem;
  --text-6xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  /* Shadows - Soft on White */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.08), 0 24px 60px rgba(0, 0, 0, 0.05);
  --shadow-primary: 0 4px 16px rgba(26, 61, 114, 0.15);
  --shadow-primary-hover: 0 8px 32px rgba(26, 61, 114, 0.25);
  --shadow-accent: 0 4px 20px rgba(212, 140, 44, 0.20);
  --shadow-accent-hover: 0 8px 32px rgba(212, 140, 44, 0.30);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET
   ======================================== */

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

html { scroll-behavior: smooth; }

body.public-site {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========================================
   PAGE LOADER
   ======================================== */

.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 1031;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform 0.1s ease;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.625rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  letter-spacing: 0.01em;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-400);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-hover);
  color: var(--white);
}

.btn-accent {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-hover);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.15);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.25);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--accent-400);
  color: var(--accent-600);
  background: var(--accent-50);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--accent-600);
}

.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: var(--text-xs);
}

/* ========================================
   NAVIGATION - Clean White
   ======================================== */

.kf-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(26, 61, 114, 0.06);
  padding: 0.25rem 0;
  transition: box-shadow var(--transition-base);
  min-height: 68px;
}

.kf-navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.kf-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink) !important;
  text-decoration: none;
}

.kf-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  background: var(--accent-gradient);
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
  font-family: var(--font-display);
  transition: transform var(--transition-fast);
}

.kf-brand:hover .kf-brand-mark {
  transform: scale(1.04) rotate(-2deg);
}

.kf-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.kf-brand-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kf-brand-text small {
  margin-top: 1px;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}

.kf-navbar .nav-link {
  position: relative;
  color: var(--gray-700) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 22px 16px !important;
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}

.kf-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.kf-navbar .nav-link:hover::after,
.kf-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.kf-navbar .nav-link:hover,
.kf-navbar .nav-link.active {
  color: var(--accent-600) !important;
}

.kf-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.kf-nav-login {
  padding: 10px 14px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.kf-nav-login:hover {
  color: var(--accent-600);
}

.kf-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  background: var(--accent-gradient);
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-fast);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.kf-nav-cta:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow-accent-hover);
}

.kf-nav-toggle {
  border: 0;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.kf-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-600);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION - Navy with Gold Accents
   ======================================== */

.kf-hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  color: var(--white);
  padding: 100px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.kf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}

.kf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50v-5h-3v5h-5v3h5v5h3v-5h5v-3h-5zm0-40V5h-3v5h-5v3h5v5h3v-5h5v-3h-5zM10 50v-5H7v5H2v3h5v5h3v-5h5v-3h-5zm0-40V5H7v5H2v3h5v5h3v-5h5v-3h-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.kf-hero .container { position: relative; z-index: 1; }

.kf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-200);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.kf-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin: 24px 0 16px;
  color: var(--white);
  letter-spacing: -0.03em;
}

.kf-hero-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kf-hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 400;
}

.kf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: 48px;
}

.kf-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.kf-hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.kf-hero-trust-item .icon {
  color: var(--accent-200);
  font-size: 16px;
}

.kf-hero-trust-item strong {
  color: var(--white);
  font-weight: 700;
}

.kf-hero-trust-item .label {
  color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.kf-hero-art {
  height: 400px;
  position: relative;
  display: grid;
  place-items: center;
}

.kf-hero-trophy {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 90px;
  color: var(--accent-200);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01) 62%, transparent 63%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.kf-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 7s ease-in-out infinite;
}

.kf-floating-one { 
  left: -5%; 
  top: 15%; 
  animation-delay: 0s;
}

.kf-floating-two { 
  right: -5%; 
  bottom: 15%; 
  animation-delay: 3.5s;
}

.kf-floating-card .icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent-gradient);
  flex-shrink: 0;
  font-size: 15px;
}

.kf-floating-card .icon.primary {
  background: var(--primary-gradient);
}

.kf-floating-card .info strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}

.kf-floating-card .info small {
  display: block;
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 400;
}

/* Status Dot */
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ========================================
   SECTION HEADERS - Clean White
   ======================================== */

.kf-section {
  padding: 80px 0;
}

.kf-section-white { background: #ffffff; }
.kf-section-soft { background: #f8fafc; }

.kf-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: 40px;
}

.kf-section-head-left .kf-eyebrow {
  color: var(--accent-600);
  background: var(--accent-50);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.kf-section-head-left h2 {
  font-size: 30px;
  margin: 8px 0 4px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kf-section-head-left p {
  color: var(--gray-500);
  margin: 0;
  font-size: 16px;
}

.kf-text-link {
  font-weight: 600;
  color: var(--accent-600);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.kf-text-link:hover {
  color: var(--accent-700);
  gap: var(--space-2);
}

/* ========================================
   AWARD CARDS - Clean White
   ======================================== */

.kf-award-card {
  display: block;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
}

.kf-award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-300);
}

.kf-award-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-700);
}

.kf-award-card .card-badge.live {
  background: var(--success-bg);
  color: var(--success);
}

.kf-award-card .card-badge.live .status-dot {
  background: var(--success);
  animation: pulse-dot 2s infinite;
}

.kf-award-card .card-badge.upcoming {
  background: var(--warning-bg);
  color: var(--warning);
}

.kf-award-card .card-badge.upcoming .status-dot {
  background: var(--warning);
}

.kf-award-card .card-badge.completed {
  background: var(--gray-200);
  color: var(--gray-600);
}

.kf-award-card .card-badge.completed .status-dot {
  background: var(--gray-500);
}

.kf-award-media {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.kf-award-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.kf-award-card:hover .kf-award-media img {
  transform: scale(1.04);
}

.kf-award-media .fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gray-400);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  font-size: 44px;
}

.kf-award-body {
  padding: 18px 20px 16px;
}

.kf-award-body .organizer {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.kf-award-body .organizer i {
  color: var(--accent-400);
  margin-right: 4px;
}

.kf-award-body h3 {
  font-size: 17px;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kf-award-body .description {
  font-size: 12px;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
  line-height: 1.5;
}

.kf-award-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--surface-border);
  font-size: 11px;
  color: var(--gray-500);
}

.kf-award-foot .categories i {
  color: var(--accent-400);
  margin-right: 4px;
}

.kf-award-foot .price {
  font-weight: 700;
  color: var(--accent-600);
  font-size: 13px;
}

/* ========================================
   EMPTY STATES - Clean White
   ======================================== */

.kf-empty {
  text-align: center;
  padding: 60px 24px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.kf-empty .icon {
  font-size: 40px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.kf-empty h5 {
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 600;
}

.kf-empty p {
  color: var(--gray-500);
  margin: 0;
}

/* ========================================
   PAGE HEADERS - Clean White
   ======================================== */

.kf-page-head {
  padding: 56px 0 44px;
  background: #ffffff;
  border-bottom: 1px solid var(--surface-border);
}

.kf-page-head h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin: 8px 0 4px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kf-page-head p {
  color: var(--gray-500);
  margin: 0;
  max-width: 560px;
  font-size: 16px;
}

.kf-page-head-compact {
  padding: 36px 0 28px;
}

/* ========================================
   SEARCH BAR - Clean White
   ======================================== */

.kf-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 2px 2px 2px 16px;
  transition: all var(--transition-base);
}

.kf-search:focus-within {
  border-color: var(--accent-400);
  box-shadow: 0 0 0 4px rgba(212, 140, 44, 0.06);
}

.kf-search .icon {
  color: var(--gray-400);
  font-size: 17px;
}

.kf-search input {
  border: 0;
  outline: 0;
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--ink);
  min-height: 38px;
}

.kf-search input::placeholder {
  color: var(--gray-400);
}

.kf-search button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.kf-search button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* ========================================
   FILTER BAR - Clean White
   ======================================== */

.kf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.kf-filter-pill {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--surface-border);
  color: var(--gray-700);
  background: #ffffff;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kf-filter-pill:hover {
  border-color: var(--accent-300);
  background: var(--accent-50);
  color: var(--accent-600);
}

.kf-filter-pill.active {
  background: var(--accent-gradient);
  border-color: var(--accent-500);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.kf-filter-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.kf-filter-pill .dot.success { background: var(--success); }
.kf-filter-pill .dot.warning { background: var(--warning); }
.kf-filter-pill .dot.gray { background: var(--gray-500); }

/* ========================================
   PAGINATION - Clean White
   ======================================== */

.kf-pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.kf-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: #ffffff;
  color: var(--gray-700);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.kf-pagination .page-link:hover {
  border-color: var(--accent-300);
  background: var(--accent-50);
  color: var(--accent-600);
}

.kf-pagination .active .page-link {
  background: var(--accent-gradient);
  border-color: var(--accent-500);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

/* ========================================
   AWARD DETAIL HERO
   ======================================== */

.kf-award-hero {
  height: 420px;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.kf-award-hero .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.kf-award-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 40, 0.88), rgba(10, 20, 40, 0.2)),
              linear-gradient(0deg, rgba(10, 20, 40, 0.6), transparent 50%);
}

.kf-award-hero .content {
  position: absolute;
  inset: auto 0 48px;
}

.kf-award-hero .content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.kf-award-hero .content .badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.kf-award-hero .content h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.kf-award-hero .content p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 16px;
}

.kf-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-bottom: 16px;
}

.kf-back-link:hover {
  color: var(--white);
}

/* ========================================
   CONTENT ELEMENTS - Clean White
   ======================================== */

.kf-content-title {
  font-size: 28px;
  margin: 8px 0 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kf-rich-copy {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
}

.kf-divider {
  height: 1px;
  background: var(--surface-border);
  margin: 40px 0;
}

.kf-subtitle {
  font-size: 20px;
  margin: 4px 0 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ========================================
   CATEGORY CARDS - Clean White
   ======================================== */

.kf-category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--ink);
}

.kf-category-card:hover {
  border-color: var(--accent-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--accent-50);
}

.kf-category-card .image {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.kf-category-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kf-category-card .info h4 {
  font-size: 14px;
  margin: 0 0 2px;
  color: var(--ink);
  font-weight: 600;
}

.kf-category-card .info span {
  font-size: 11px;
  color: var(--gray-500);
}

.kf-category-card .arrow {
  margin-left: auto;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.kf-category-card:hover .arrow {
  color: var(--accent-500);
  transform: translateX(4px);
}

/* ========================================
   SIDEBAR CARDS - Clean White
   ======================================== */

.kf-side-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 92px;
}

.kf-side-card .label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
  font-weight: 700;
}

.kf-side-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.kf-side-card li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--surface-border);
}

.kf-side-card li:first-child { border-top: 0; padding-top: 0; }

.kf-side-card li .icon {
  color: var(--accent-400);
  font-size: 16px;
  width: 20px;
  margin-top: 2px;
}

.kf-side-card li small,
.kf-side-card li strong { display: block; }

.kf-side-card li small {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 400;
}

.kf-side-card li strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}

/* ========================================
   BREADCRUMBS - Clean White
   ======================================== */

.kf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--gray-500);
  font-size: 12px;
  padding: 16px 0 8px;
}

.kf-breadcrumb a {
  color: var(--accent-600);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.kf-breadcrumb a:hover {
  color: var(--accent-700);
}

.kf-breadcrumb .sep {
  color: var(--gray-300);
  font-size: 10px;
}

.kf-count-chip {
  padding: 6px 14px;
  background: var(--accent-50);
  color: var(--accent-600);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

/* ========================================
   NOMINEE CARDS - Clean White
   ======================================== */

.kf-nominee-card {
  display: block;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  transition: all var(--transition-base);
  text-decoration: none;
}

.kf-nominee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-300);
}

.kf-nominee-card .photo {
  height: 220px;
  position: relative;
  background: var(--gray-100);
  overflow: hidden;
}

.kf-nominee-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.kf-nominee-card:hover .photo img {
  transform: scale(1.05);
}

.kf-nominee-card .photo .view-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--accent-600);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.kf-nominee-card:hover .photo .view-btn {
  opacity: 1;
  transform: translateY(0);
}

.kf-nominee-card .body {
  padding: 16px;
}

.kf-nominee-card .body h3 {
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 600;
}

.kf-nominee-card .body .code {
  display: inline-block;
  color: var(--accent-600);
  background: var(--accent-50);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.kf-nominee-card .body .org {
  display: block;
  color: var(--gray-500);
  font-size: 11px;
  margin-top: 6px;
}

.kf-nominee-card .body .org i {
  color: var(--accent-400);
  margin-right: 4px;
}

.kf-nominee-card .body .link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.kf-nominee-card .body .link i {
  transition: transform var(--transition-fast);
}

.kf-nominee-card:hover .body .link i {
  transform: translateX(4px);
}

/* ========================================
   PROFILE PAGE - Clean White
   ======================================== */

.kf-profile {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 48px;
  align-items: start;
}

.kf-profile .photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}

.kf-profile .photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.kf-profile .content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 6px 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kf-profile .content .code-badge {
  display: inline-flex;
  flex-direction: column;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  background: var(--accent-50);
  color: var(--accent-600);
  margin-bottom: 12px;
}

.kf-profile .content .code-badge span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.7;
}

.kf-profile .content .code-badge strong {
  font-size: 13px;
}

.kf-profile .content .meta {
  color: var(--gray-500);
  font-size: 13px;
}

.kf-profile .content .meta i { color: var(--accent-400); }

.kf-profile .content .socials {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.kf-profile .content .socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all var(--transition-base);
}

.kf-profile .content .socials a:hover {
  background: var(--accent-gradient);
  color: var(--white);
  transform: translateY(-2px);
}

.kf-profile .content .bio {
  color: var(--gray-700);
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.8;
}

.kf-profile .content .vote-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--accent-200);
  border-radius: var(--radius-lg);
  background: var(--accent-50);
}

.kf-profile .content .vote-panel .votes {
  display: flex;
  flex-direction: column;
}

.kf-profile .content .vote-panel .votes small {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 400;
}

.kf-profile .content .vote-panel .votes strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent-600);
}

.kf-profile .content .vote-panel .votes .price {
  font-size: 11px;
  color: var(--gray-500);
}

/* ========================================
   VOTE PAGE - Clean White
   ======================================== */

.kf-vote-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.kf-vote-page .vote-header {
  text-align: center;
  margin-bottom: 40px;
}

.kf-vote-page .vote-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.kf-vote-page .vote-header p {
  color: var(--gray-500);
}

.kf-vote-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.kf-vote-card .vote-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--surface-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-bottom: 12px;
}

.kf-vote-card .vote-option:hover {
  border-color: var(--accent-300);
  background: var(--accent-50);
}

.kf-vote-card .vote-option.selected {
  border-color: var(--accent-500);
  background: var(--accent-50);
  box-shadow: var(--shadow-accent);
}

.kf-vote-card .vote-option .radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.kf-vote-card .vote-option.selected .radio {
  border-color: var(--accent-500);
}

.kf-vote-card .vote-option .radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.kf-vote-card .vote-option.selected .radio::after {
  opacity: 1;
  transform: scale(1);
}

.kf-vote-card .vote-option .info h4 {
  font-size: 16px;
  margin: 0 0 2px;
}

.kf-vote-card .vote-option .info small {
  color: var(--gray-500);
  font-size: 12px;
}

.kf-vote-card .vote-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
  margin-top: 16px;
}

.kf-vote-card .vote-summary .total {
  font-size: 14px;
  color: var(--gray-500);
}

.kf-vote-card .vote-summary .total strong {
  color: var(--ink);
}

/* ========================================
   FLASH MESSAGES
   ======================================== */

.kf-flash { padding-top: 16px; }

.kf-alert {
  border: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.kf-alert-success {
  background: var(--success-bg);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.kf-alert-danger {
  background: var(--error-bg);
  color: var(--error);
  border-left: 4px solid var(--error);
}

/* ========================================
   FOOTER - Premium Navy with Gold Accent
   ======================================== */

.kf-footer {
  background: var(--ink);
  color: var(--white);
  margin-top: auto;
  padding: 60px 0 0;
  border-top: 4px solid var(--accent-500);
}

.kf-footer .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kf-footer .brand .kf-brand-text strong {
  color: var(--white);
}

.kf-footer .brand .kf-brand-text small {
  color: rgba(255, 255, 255, 0.4);
}

.kf-footer .brand-description {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.8;
}

.kf-footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.kf-footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.kf-footer .social-links a:hover {
  background: var(--accent-gradient);
  color: var(--white);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.kf-footer h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-200);
  margin-bottom: 16px;
  font-weight: 600;
}

.kf-footer .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 8px 0;
  text-decoration: none;
  transition: all var(--transition-fast);
  padding: 2px 0;
}

.kf-footer .footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.kf-footer .footer-links a i {
  margin-right: 6px;
  font-size: 12px;
  color: var(--accent-400);
  opacity: 0.4;
}

.kf-footer .footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.kf-footer .footer-newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.kf-footer .footer-newsletter .input-group {
  display: flex;
  gap: 8px;
}

.kf-footer .footer-newsletter .input-group input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
  min-height: 44px;
}

.kf-footer .footer-newsletter .input-group input:focus {
  outline: none;
  border-color: var(--accent-400);
}

.kf-footer .footer-newsletter .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.kf-footer .footer-newsletter .input-group button {
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}

.kf-footer .footer-newsletter .input-group button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-hover);
}

.kf-footer .footer-bottom {
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.kf-footer .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.kf-footer .footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
}

.kf-footer .footer-bottom .footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.kf-footer .footer-bottom .footer-legal a:hover {
  color: var(--accent-200);
}

.kf-footer .footer-bottom .footer-legal .divider {
  color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   UTILITIES
   ======================================== */

.public-section { padding: 20px 0; }
.text-muted { color: var(--gray-500); }
.text-primary { color: var(--primary-600); }
.text-accent { color: var(--accent-600); }
.bg-white { background: #ffffff; }
.bg-surface { background: #f8fafc; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .kf-floating-one { left: 0; }
  .kf-floating-two { right: 0; }
}

@media (max-width: 991.98px) {
  .kf-navbar { min-height: 60px; }
  
  .kf-navbar .nav-link {
    padding: 12px 14px !important;
  }
  
  .kf-navbar .nav-link::after { display: none; }
  
  .kf-nav-actions {
    padding: 12px 0 20px;
    flex-direction: column;
    width: 100%;
  }
  
  .kf-nav-actions .kf-nav-login,
  .kf-nav-actions .kf-nav-cta {
    width: 100%;
    justify-content: center;
  }
  
  .kf-hero-title { font-size: 44px; }
  .kf-hero-art { height: 320px; }
  .kf-hero-trophy { width: 180px; height: 180px; font-size: 72px; }
  .kf-floating-card { display: none; }
  
  .kf-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .kf-profile .photo { max-width: 400px; }
  
  .kf-side-card { position: static; }
  .kf-award-hero { height: 360px; }
}

@media (max-width: 767.98px) {
  .kf-section { padding: 56px 0; }
  
  .kf-hero {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .kf-hero-title { font-size: 34px; }
  .kf-hero-lead { font-size: 15px; }
  .kf-hero-trust { gap: 16px; }
  
  .kf-section-head { flex-direction: column; align-items: flex-start; }
  .kf-section-head-left h2 { font-size: 26px; }
  
  .kf-page-head {
    padding: 40px 0 32px;
  }
  
  .kf-page-head h1 { font-size: 30px; }
  
  .kf-award-hero { height: 320px; }
  .kf-award-hero .content { bottom: 30px; }
  .kf-award-hero .content h1 { font-size: 28px; }
  
  .kf-nominee-card .photo { height: 180px; }
  
  .kf-profile .content h1 { font-size: 30px; }
  .kf-profile .content .vote-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .kf-profile .content .vote-panel .btn { width: 100%; justify-content: center; }
  
  .kf-hero-art { height: 240px; }
  .kf-hero-trophy { width: 140px; height: 140px; font-size: 56px; }
  
  .kf-footer .footer-top .row > div {
    margin-bottom: 32px;
  }
  
  .kf-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .kf-footer .footer-newsletter .input-group {
    flex-direction: column;
  }
  
  .kf-footer .footer-newsletter .input-group button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .kf-brand-text strong { font-size: 15px; }
  .kf-brand-mark { width: 34px; height: 34px; font-size: 16px; }
  .kf-brand-text small { font-size: 7px; }
  
  .kf-hero-title { font-size: 28px; }
  .kf-hero-actions .btn { width: 100%; justify-content: center; }
  
  .kf-award-media { height: 160px; }
  .kf-award-body h3 { font-size: 15px; }
  
  .kf-filter-bar { gap: 4px; }
  .kf-filter-pill { font-size: 11px; padding: 6px 12px; }
  
  .kf-award-hero { height: 280px; }
  .kf-award-hero .content h1 { font-size: 24px; }
  
  .kf-search { flex-wrap: wrap; }
  .kf-search button { width: 100%; justify-content: center; margin-top: 4px; }
  
  .kf-footer .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .kf-vote-card { padding: 20px; }
  .kf-vote-card .vote-option { flex-wrap: wrap; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .kf-navbar,
  .kf-footer,
  .kf-hero-actions,
  .kf-filter-bar,
  .kf-pagination,
  .btn,
  .kf-nav-cta,
  .kf-nav-login,
  .kf-search,
  .scroll-progress,
  .page-loader {
    display: none !important;
  }

  .kf-award-card {
    break-inside: avoid;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }

  .kf-hero {
    min-height: auto !important;
    padding: 40px 0 !important;
  }

  body.public-site {
    background: white !important;
    color: black !important;
  }
}

/* ========================================
   DARK MODE - Subtle Dark on White
   ======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #f8fafc;
    --surface-elevated: #ffffff;
    --surface-border: #e2e8f0;
    --ink: #0a1428;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
  }

  body.public-site { background: #ffffff; }

  .kf-navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(26, 61, 114, 0.06);
  }

  .kf-award-card,
  .kf-category-card,
  .kf-side-card,
  .kf-empty,
  .kf-nominee-card,
  .kf-page-head,
  .kf-filter-pill,
  .kf-search,
  .kf-pagination .page-link,
  .kf-vote-card {
    background: #ffffff;
  }
}