@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Open+Sans:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Merriweather', Georgia, serif;
  background-color: #F5F7FA;
  color: #333333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #1A2E35; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #D62828; }

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

ul, ol { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1A2E35;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

.text-accent { color: #D62828; }
.text-primary { color: #1A2E35; }
.text-muted { color: #777; }

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1A2E35;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #FFFFFF;
  background: rgba(214,40,40,0.18);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #333;
  padding: 10px 16px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: #F5F7FA; color: #D62828; }
.dropdown-menu a:first-child { border-radius: 6px 6px 0 0; }
.dropdown-menu a:last-child { border-radius: 0 0 6px 6px; }

.nav-cta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: #D62828;
  padding: 9px 18px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #b51e1e !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  background: #1A2E35;
  color: #FFFFFF;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D62828;
  margin-bottom: 16px;
  display: block;
}
.hero h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: #D62828;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #b51e1e;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214,40,40,0.3);
}
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}
.btn-outline {
  background: transparent;
  color: #1A2E35;
  border: 2px solid #1A2E35;
}
.btn-outline:hover {
  background: #1A2E35;
  color: #FFFFFF;
}
.btn-accent {
  background: #D62828;
  color: #FFFFFF;
}
.btn-accent:hover {
  background: #b51e1e;
  color: #FFFFFF;
}
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ===================== SECTION HEADERS ===================== */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D62828;
  margin-bottom: 10px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-divider {
  width: 48px;
  height: 3px;
  background: #D62828;
  margin-top: 12px;
}
.section-header.centered .section-divider { margin: 12px auto 0; }
.section-header p { max-width: 600px; color: #555; }
.section-header.centered p { margin: 0 auto; }

/* ===================== CARDS ===================== */
.card {
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.card-image { overflow: hidden; aspect-ratio: 16/10; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.03); }
.card-body { padding: 24px; }
.card-category {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D62828;
  margin-bottom: 8px;
  display: block;
}
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2E35;
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-title a { color: inherit; }
.card-title a:hover { color: #D62828; }
.card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #999;
  display: flex;
  gap: 16px;
  align-items: center;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* Card no-image variant */
.card-noimg .card-body { padding: 28px 24px; }
.card-featured {
  background: #1A2E35;
  color: #FFFFFF;
  border-color: #1A2E35;
}
.card-featured .card-title { color: #FFFFFF; }
.card-featured .card-title a { color: #FFFFFF; }
.card-featured .card-title a:hover { color: #D62828; }
.card-featured .card-excerpt { color: rgba(255,255,255,0.7); }
.card-featured .card-category { color: #D62828; }
.card-featured .card-meta { color: rgba(255,255,255,0.45); }

/* ===================== ARTICLE LAYOUT ===================== */
.article-header { padding: 72px 0 56px; background: #1A2E35; color: #fff; }
.article-header .article-category {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D62828;
  margin-bottom: 14px;
  display: block;
}
.article-header h1 { color: #FFFFFF; max-width: 820px; }
.article-header .article-lead { color: rgba(255,255,255,0.72); max-width: 700px; margin-top: 16px; font-size: 1.05rem; }
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.article-meta-bar .author-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-chip img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.author-chip-info { font-family: 'Open Sans', sans-serif; }
.author-chip-info .name { font-size: 0.85rem; font-weight: 600; color: #FFFFFF; }
.author-chip-info .role { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.article-meta-bar .meta-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.article-body { padding: 64px 0 80px; }
.article-body .container { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.article-content h2 { font-size: 1.55rem; margin: 40px 0 16px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-content p { font-size: 1.0rem; line-height: 1.85; margin-bottom: 1.4em; color: #3a3a3a; }
.article-content ul, .article-content ol { margin: 0 0 1.4em 1.5em; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 6px; font-size: 1rem; color: #3a3a3a; }
.article-content blockquote {
  border-left: 4px solid #D62828;
  padding: 16px 24px;
  margin: 32px 0;
  background: #F5F7FA;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}
.article-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  color: #888;
}
.article-content .article-img {
  margin: 32px 0;
  border-radius: 6px;
  overflow: hidden;
}
.article-content .article-img img { width: 100%; }
.article-content .img-caption {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #999;
  margin-top: 8px;
  font-style: italic;
}

/* Sidebar */
.article-sidebar {}
.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A2E35;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D62828;
}
.sidebar-links li { margin-bottom: 0; }
.sidebar-links li a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.15s, padding-left 0.15s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: #D62828; padding-left: 6px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  background: #F5F7FA;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
}
.tag:hover { background: #1A2E35; color: #fff; border-color: #1A2E35; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid #E8EAED;
  background: #FFFFFF;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb li::after { content: '/'; color: #CCC; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li a { color: #555; }
.breadcrumb li a:hover { color: #D62828; }
.breadcrumb li.active { color: #1A2E35; font-weight: 600; }

/* ===================== FEATURED STRIP ===================== */
.featured-strip {
  background: #FFFFFF;
  border-bottom: 1px solid #E8EAED;
  padding: 0;
}
.featured-strip-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  min-height: 480px;
}
.featured-main { position: relative; overflow: hidden; }
.featured-main img { width: 100%; height: 100%; object-fit: cover; }
.featured-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,46,53,0.95) 0%, transparent 100%);
  padding: 40px 32px 32px;
}
.featured-main-overlay .card-category { color: #D62828; font-size: 0.7rem; }
.featured-main-overlay h2 { color: #FFFFFF; font-size: 1.5rem; margin-bottom: 10px; }
.featured-main-overlay p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 0; }
.featured-secondary { border-left: 1px solid #E8EAED; display: flex; flex-direction: column; }
.featured-secondary .featured-item {
  flex: 1;
  padding: 24px;
  border-bottom: 1px solid #E8EAED;
  transition: background 0.2s;
}
.featured-secondary .featured-item:last-child { border-bottom: none; }
.featured-secondary .featured-item:hover { background: #F5F7FA; }
.featured-item .fi-category {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D62828;
  margin-bottom: 6px;
  display: block;
}
.featured-item h4 { font-size: 0.95rem; color: #1A2E35; margin-bottom: 8px; line-height: 1.35; }
.featured-item h4 a { color: inherit; }
.featured-item h4 a:hover { color: #D62828; }
.featured-item p { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 0; }
.featured-item .fi-meta { font-family: 'Open Sans', sans-serif; font-size: 0.72rem; color: #AAA; margin-top: 8px; }

/* ===================== STATS ROW ===================== */
.stats-row {
  background: #1A2E35;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: #D62828; }
.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================== QUOTE BLOCK ===================== */
.quote-block {
  background: #1A2E35;
  color: #FFFFFF;
  padding: 80px 0;
}
.quote-block blockquote {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote::before { content: '\201C'; color: #D62828; font-size: 4rem; line-height: 0.5; vertical-align: -0.4em; margin-right: 6px; }
.quote-block cite {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================== TOPIC BANDS ===================== */
.topic-band { padding: 16px 0; background: #FFFFFF; border-bottom: 1px solid #E8EAED; }
.topic-band-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; }
.topic-band-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #1A2E35;
  padding: 8px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.topic-band-links { display: flex; gap: 4px; padding: 0 8px; flex-wrap: wrap; }
.topic-band-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  padding: 6px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: all 0.15s;
}
.topic-band-links a:hover { color: #D62828; background: #FFF5F5; }

/* ===================== ABOUT / PROFILE ===================== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 6px; width: 100%; }
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: #D62828;
  border-radius: 6px;
  z-index: -1;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card-body .role {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #D62828;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card-body p { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 0; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #F5F7FA;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text { font-family: 'Open Sans', sans-serif; font-size: 0.9rem; }
.contact-detail-text strong { display: block; color: #1A2E35; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

.contact-form { background: #FFFFFF; border: 1px solid #E8EAED; border-radius: 6px; padding: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1A2E35;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D8DCE0;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #333;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: #1A2E35;
  box-shadow: 0 0 0 3px rgba(26,46,53,0.08);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-note { font-family: 'Open Sans', sans-serif; font-size: 0.75rem; color: #999; margin-top: 8px; }

/* ===================== THANK YOU ===================== */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-inner {
  max-width: 560px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: #1A2E35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.thankyou-icon svg { width: 36px; height: 36px; }
.thankyou-inner h1 { font-size: 2.2rem; margin-bottom: 16px; }
.thankyou-inner p { color: #666; line-height: 1.75; margin-bottom: 32px; }

/* ===================== PAGINATION ===================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 48px 0; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: #1A2E35; color: #FFFFFF; border-color: #1A2E35; }
.page-btn.dots { border: none; cursor: default; color: #AAA; }
.page-btn.dots:hover { background: transparent; color: #AAA; }

/* ===================== NEWSLETTER ===================== */
.newsletter-section {
  background: #F5F7FA;
  border-top: 1px solid #E8EAED;
  padding: 72px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-form { display: flex; gap: 0; }
.newsletter-form .form-control {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  padding: 12px 24px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0F1E24;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 1.4rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-top: 16px; color: rgba(255,255,255,0.5); }
.footer-col h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-links a:hover { color: #FFFFFF; }
.footer-contact-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: #FFFFFF; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===================== PAGE HERO (inner) ===================== */
.page-hero {
  background: #1A2E35;
  padding: 64px 0 56px;
  color: #FFFFFF;
}
.page-hero h1 { color: #FFFFFF; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 12px; font-family: 'Open Sans', sans-serif; font-size: 1rem; }

/* ===================== POLICY PAGES ===================== */
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; padding: 72px 0 100px; align-items: start; }
.policy-toc { position: sticky; top: 90px; }
.policy-toc h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1A2E35;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D62828;
}
.policy-toc ul { display: flex; flex-direction: column; gap: 4px; }
.policy-toc ul a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: #666;
  padding: 7px 12px;
  border-radius: 4px;
  transition: all 0.15s;
}
.policy-toc ul a:hover { color: #D62828; background: #FFF5F5; }
.policy-content h2 { font-size: 1.4rem; margin: 48px 0 14px; color: #1A2E35; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 1.05rem; margin: 28px 0 10px; color: #1A2E35; }
.policy-content p { font-size: 0.95rem; line-height: 1.82; color: #444; margin-bottom: 1.2em; }
.policy-content ul, .policy-content ol { margin: 0 0 1.2em 1.6em; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.95rem; color: #444; margin-bottom: 6px; line-height: 1.7; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }
.policy-content table th { background: #1A2E35; color: #FFFFFF; padding: 10px 14px; text-align: left; font-family: 'Open Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.06em; }
.policy-content table td { padding: 10px 14px; border-bottom: 1px solid #E8EAED; color: #444; }
.policy-content table tr:hover td { background: #F5F7FA; }
.policy-last-updated {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #D62828;
  background: #FFF5F5;
  border: 1px solid #FCD0D0;
  padding: 10px 16px;
  border-radius: 4px;
  margin-bottom: 40px;
  display: inline-block;
}

/* ===================== ACCORDION / FAQ ===================== */
.faq-item { border-bottom: 1px solid #E8EAED; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A2E35;
  gap: 16px;
  transition: color 0.15s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: #D62828; }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #F5F7FA;
  border: 1px solid #E8EAED;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1A2E35;
  transition: all 0.2s;
}
.faq-item.open .faq-icon { background: #D62828; border-color: #D62828; color: #FFFFFF; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 0 24px; font-size: 0.95rem; color: #555; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ===================== TABS ===================== */
.tab-nav { display: flex; border-bottom: 2px solid #E8EAED; margin-bottom: 40px; gap: 0; overflow-x: auto; }
.tab-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #888;
  padding: 14px 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.tab-btn:hover { color: #1A2E35; }
.tab-btn.active { color: #D62828; border-bottom-color: #D62828; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===================== GLOSSARY ===================== */
.glossary-letter-group { margin-bottom: 48px; }
.glossary-letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #E8EAED;
  border-bottom: 2px solid #E8EAED;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.glossary-term { margin-bottom: 24px; padding-left: 16px; border-left: 3px solid transparent; transition: border-color 0.2s; }
.glossary-term:hover { border-left-color: #D62828; }
.glossary-term dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2E35;
  margin-bottom: 6px;
}
.glossary-term dd { font-size: 0.9rem; color: #555; line-height: 1.75; }

/* ===================== SITEMAP ===================== */
.sitemap-section { margin-bottom: 48px; }
.sitemap-section h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1A2E35;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D62828;
}
.sitemap-links { display: flex; flex-direction: column; gap: 6px; }
.sitemap-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.15s, padding-left 0.15s;
}
.sitemap-links a:hover { color: #D62828; padding-left: 8px; }

/* ===================== CALLOUT ===================== */
.callout {
  background: #F5F7FA;
  border-left: 4px solid #1A2E35;
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout.accent { border-left-color: #D62828; }
.callout p { font-size: 0.92rem; color: #444; margin-bottom: 0; }
.callout strong { color: #1A2E35; }

/* ===================== AUTHORS PAGE ===================== */
.author-profile-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 24px;
}
.author-profile-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.author-profile-photo img { width: 100%; border-radius: 6px; aspect-ratio: 1; object-fit: cover; }
.author-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.author-info .author-title { font-family: 'Open Sans', sans-serif; font-size: 0.82rem; color: #D62828; font-weight: 600; margin-bottom: 10px; }
.author-info p { font-size: 0.88rem; color: #555; line-height: 1.7; margin-bottom: 12px; }
.author-stats { display: flex; gap: 20px; }
.author-stat { font-family: 'Open Sans', sans-serif; font-size: 0.78rem; color: #999; }
.author-stat strong { display: block; font-size: 1rem; color: #1A2E35; font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* ===================== TOPIC PAGE ===================== */
.topic-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.topic-intro-img img { border-radius: 6px; width: 100%; }
.key-points { list-style: none; margin: 0; }
.key-points li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.92rem;
  color: #444;
}
.key-points li:last-child { border-bottom: none; }
.key-points li::before {
  content: '→';
  color: #D62828;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #1A2E35;
  z-index: 999;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover { color: #FFFFFF; background: rgba(255,255,255,0.05); }
.mobile-nav .mobile-cta {
  margin: 16px 24px 0;
  display: block;
  text-align: center;
  background: #D62828;
  color: #FFFFFF !important;
  border-radius: 4px;
  padding: 14px;
  border-bottom: none !important;
}
.mobile-nav .mobile-cta:hover { background: #b51e1e !important; }

/* ===================== UTILITY ===================== */
.bg-white { background: #FFFFFF; }
.bg-light { background: #F5F7FA; }
.bg-dark { background: #1A2E35; }
.border-top { border-top: 1px solid #E8EAED; }
.border-bottom { border-bottom: 1px solid #E8EAED; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.accent-line { display: block; width: 40px; height: 3px; background: #D62828; margin-bottom: 20px; }
.accent-line.centered { margin: 0 auto 20px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .featured-strip-inner { grid-template-columns: 1fr; }
  .featured-main { min-height: 360px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-body .container { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; display: none; }
  .topic-intro { grid-template-columns: 1fr; gap: 40px; }
  .author-profile-card { grid-template-columns: 100px 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .form-control { border-radius: 4px; border: 1px solid #D8DCE0; }
  .newsletter-form .btn { border-radius: 4px; }
  .contact-form { padding: 24px 20px; }
  .hero { padding: 64px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .author-profile-card { grid-template-columns: 1fr; }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.4s ease both; }
.fade-in-up-1 { animation-delay: 0.05s; }
.fade-in-up-2 { animation-delay: 0.1s; }
.fade-in-up-3 { animation-delay: 0.15s; }
.fade-in-up-4 { animation-delay: 0.2s; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F1E24;
  color: rgba(255,255,255,0.8);
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  border-top: 3px solid #D62828;
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-family: 'Open Sans', sans-serif; font-size: 0.85rem; margin-bottom: 0; color: rgba(255,255,255,0.7); }
.cookie-banner a { color: #D62828; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookie-accept { background: #D62828; color: #FFFFFF; }
.cookie-accept:hover { background: #b51e1e; }
.cookie-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-decline:hover { background: rgba(255,255,255,0.15); }
