﻿:root {
  --kh-charcoal: #111111;
  --kh-ivory: #f5f1e8;
  --kh-brass: #b08d57;
  --kh-teal: #1f3a3d;
  --kh-muted: #7a7468;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--kh-charcoal);
  background: radial-gradient(circle at 15% 10%, #fff8ea 0%, var(--kh-ivory) 40%, #efe9dd 100%);
}

h1, h2, h3, .brand-font {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
}

.navbar {
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.navbar .nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.page-hero {
  padding: 7rem 0 2rem;
}

.hero {
  padding: 7rem 0 4rem;
}

.hero-panel {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 45%, #1f3a3d 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.btn-kh-primary {
  background: var(--kh-brass);
  border-color: var(--kh-brass);
  color: #111;
  font-weight: 700;
}

.btn-kh-primary:hover {
  background: #9d7b48;
  border-color: #9d7b48;
  color: #111;
}

.btn-kh-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-kh-outline:hover {
  background: #fff;
  color: #111;
}

.section-title {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.muted {
  color: var(--kh-muted);
}

.kh-card {
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(155deg, #161616 0%, #1c1c1c 42%, #1f3a3d 100%);
  color: #f2ece0;
}

.kh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.kh-card .muted {
  color: #c7c1b5;
}

.kh-card a {
  color: #e0c089;
  text-decoration-color: rgba(224, 192, 137, 0.6);
}

.kh-card a:hover {
  color: #f2d8ab;
}

.pagination .page-link {
  background: #1a1a1a;
  border-color: rgba(176, 141, 87, 0.45);
  color: #e7d8bd;
}

.pagination .page-link:hover {
  background: #243c3f;
  border-color: rgba(176, 141, 87, 0.75);
  color: #f2e7d2;
}

.pagination .page-item.active .page-link {
  background: #b08d57;
  border-color: #b08d57;
  color: #111111;
}

.pagination .page-item.disabled .page-link {
  background: #222;
  border-color: rgba(176, 141, 87, 0.25);
  color: #8d8678;
}

.kh-dark-table {
  --bs-table-bg: transparent;
  --bs-table-color: #f2ece0;
  --bs-table-border-color: rgba(176, 141, 87, 0.22);
  margin-bottom: 0;
}

.kh-dark-table thead th {
  color: #e9d6b2;
  border-bottom-color: rgba(176, 141, 87, 0.45);
}

.kh-dark-table tbody td {
  color: #f2ece0;
}

.accent-line {
  width: 72px;
  height: 3px;
  background: var(--kh-brass);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.media-thumb {
  border-radius: 0.75rem;
  background: linear-gradient(140deg, #253a3d, #1a1a1a);
  color: #fff;
  min-height: 180px;
  display: flex;
  align-items: end;
  padding: 1rem;
  font-weight: 600;
}

.event-item {
  border-left: 3px solid var(--kh-brass);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.creative-table {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #fff, #f9f6ef);
  padding: 0.85rem;
}

.creative-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.creative-list li {
  margin: 0;
}

.creative-list li + li {
  margin-top: 0.55rem;
}

.creative-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(31, 58, 61, 0.12);
  border-radius: 0.7rem;
  padding: 0.6rem 0.7rem;
  text-decoration: none;
  background: #fff;
  color: var(--kh-charcoal);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.creative-list a:hover {
  border-color: rgba(176, 141, 87, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.creative-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 87, 0.14);
  font-size: 0.95rem;
}

.creative-title {
  font-weight: 600;
  color: var(--kh-teal);
  line-height: 1.2;
}

.creative-external {
  color: var(--kh-muted);
  font-weight: 700;
}

.newsletter {
  background: linear-gradient(135deg, #101010, #1f3a3d);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.65), rgba(233, 227, 215, 0.9));
}

.footer-links a {
  color: var(--kh-charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.9rem;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--kh-teal);
  margin-bottom: 0.6rem;
}

.footer-sep {
  margin: 1.25rem 0 1rem;
  border-color: rgba(17, 17, 17, 0.1);
}

.footer-social {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social li {
  margin: 0;
}

.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 141, 87, 0.7);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.footer-social img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.footer-social .social-icon-lg {
  width: 1.45rem;
  height: 1.45rem;
}

.footer-social .social-icon-sm {
  width: 1.1rem;
  height: 1.1rem;
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(17, 17, 17, 0.95);
  padding: 0.65rem;
  display: none;
}

@media (max-width: 991.98px) {
  .hero,
  .page-hero {
    padding-top: 5.5rem;
  }
  .sticky-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 767.98px) {
  .creative-table {
    padding: 0.6rem;
  }
  .creative-list a {
    padding: 0.55rem 0.6rem;
  }
}
