*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #d0a741;
  --accent-dark: #8a6a1a;
  --dark: #0e100f;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --muted: #9a9490;
  --text-secondary: #6b6560;
  --border: #e6e1da;
  --dark-navy: #0b0b0d;
  --page-pad: 40px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

#hero {
  position: relative;
  max-height: 85vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  /* padding: 40px; */
  padding-bottom: 130px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(26, 57, 98, 0.616) 5%,
      rgba(8, 14, 8, 0) 90%
    ),
    linear-gradient(to top, rgba(14, 12, 8, 0.92) 0%, transparent 15%);
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}
.hero-top-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 22px;
}
.hero-title-col {
  flex: 1;
}
.hero-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary-vort {
  background: #fff;
  color: #0f1410;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary-vort:hover {
  opacity: 0.88;
  color: #0f1410;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 2;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scroll-hint svg {
  width: 14px;
  height: 14px;
}

/* ─── FILTER BADGES ──────────────────── */
#filter-bar {
  padding: 40px var(--page-pad) 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.filter-badge {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.filter-badge:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--offwhite);
}
.filter-badge.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.filter-badge.active-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── NEWS GRID ──────────────────────── */

/* ─── NEWS GRID ──────────────────────── */
#news-grid {
  padding: 80px var(--page-pad) 140px;
}

/* Featured / first card */
.news-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 48px;
  transition: box-shadow 0.3s;
}
.news-featured-img {
  overflow: hidden;
  background: #ddd9d3;
  min-height: 440px;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-featured:hover .news-featured-img img {
  transform: scale(1.04);
}
.news-featured-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  margin-right: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.news-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.news-tag.tag-gold {
  border-color: var(--accent);
  color: var(--accent);
}

.news-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-title {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin: 24px 0 20px;
}
.featured-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
}
.read-more-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  align-self: flex-start;
}
.read-more-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.read-more-link svg {
  width: 12px;
  height: 12px;
}

/* Standard card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
}
.card-img {
  overflow: hidden;
  background: #ddd9d3;
  aspect-ratio: 16/10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .card-img img {
  transform: scale(1.05);
}
.card-body-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

/* Date badge like the screenshot */
.date-box {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  display: inline-block;
  min-width: 52px;
}
.date-box .day {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.date-box .month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}

/* No results */
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.no-results.show {
  display: block;
}
.no-results p {
  font-size: 16px;
  margin-top: 12px;
}

/* ─── LOAD MORE ──────────────────────── */
.load-more-wrap {
  text-align: center;
  margin-top: 64px;
}
.btn-load-more {
  padding: 14px 40px;
  border-radius: 50px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-load-more:hover {
  background: var(--dark);
  color: #fff;
}

/* ─── FOOTER ─────────────────────────── */
footer {
  background: var(--dark-navy);
  padding: 100px var(--page-pad) 60px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.footer-tagline {
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 540px;
}
.footer-tagline em {
  font-style: normal;
  color: var(--accent);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 36px;
}
.footer-logo img {
  width: 80px;
  opacity: 0.85;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.footer-country {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── FADE ANIMATIONS ─────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1200px) {
  :root {
    --page-pad: 60px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  :root {
    --page-pad: 40px;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured-img {
    min-height: 280px;
  }
  .news-featured-body {
    padding: 40px 36px;
  }
}
@media (max-width: 768px) {
  :root {
    --page-pad: 24px;
  }
  .navbar-wrap {
    padding: 16px var(--page-pad);
  }
  .nav-center {
    display: none;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  #filter-bar {
    padding: 28px var(--page-pad) 0;
    top: 64px;
  }
  .footer-top {
    flex-direction: column;
    gap: 48px;
  }
  .footer-right {
    align-items: flex-start;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-hero-title {
    font-size: 38px;
  }
}

.news-status {
  padding: 0 var(--page-pad) 24px;
  font-size: 15px;
  color: var(--text-secondary);
}

.news-status:empty {
  display: none;
}
