@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --navy: #0D1B2A;
  --navy-mid: #1B2D45;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --mid-gray: #E8ECF0;
  --text-dark: #1A2535;
  --text-mid: #4A5568;
  --text-light: #8896A5;
  --gold: #C9A84C;
  --gold-light: #DFC078;
  --green: #3D9970;
  --green-light: #4CAF7D;
  --border: #DDE3EA;
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.12);
  --shadow-lg: 0 8px 32px rgba(13,27,42,0.16);
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p { line-height: 1.75; color: var(--text-mid); }
.lead { font-size: 1.125rem; color: var(--text-mid); line-height: 1.8; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-light); }
.text-navy { color: var(--navy); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-auto { margin-top: auto; }
.text-center { text-align: center; }

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.logo-tagline { font-size: 0.65rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; display: block; line-height: 1; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(201,168,76,0.12); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; color: rgba(255,255,255,0.82) !important; padding: 8px 12px !important; border-radius: 4px !important; font-size: 0.85rem !important; background: none !important; }
.dropdown-menu a:hover { background: rgba(201,168,76,0.12) !important; color: var(--white) !important; }

.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.header-cta:hover { background: var(--gold-light) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.22s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(201,168,76,0.2); }
.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid rgba(201,168,76,0.2);
}
.hero-stat {
  background: rgba(13,27,42,0.6);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  text-align: center;
}
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--gold); font-weight: 700; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.04em; }

/* ─── SECTION HEADERS ─── */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin-bottom: 16px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.card-meta .cat-tag { color: var(--gold); font-weight: 600; }
.card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card-body h3 a:hover { color: var(--gold); }
.card-body p { font-size: 0.9rem; flex: 1; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--mid-gray); display: flex; align-items: center; justify-content: space-between; }
.read-more { font-size: 0.83rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.card:hover .read-more { gap: 9px; }

/* Episode Card */
.episode-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.25s;
  align-items: flex-start;
}
.episode-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.episode-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.episode-info { flex: 1; }
.episode-info h4 { margin-bottom: 6px; font-size: 1rem; color: var(--text-dark); }
.episode-info p { font-size: 0.87rem; margin-bottom: 12px; }
.episode-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.tag-blue { background: rgba(27,45,69,0.1); color: var(--navy-mid); }
.tag-green { background: rgba(61,153,112,0.1); color: var(--green); }
.episode-meta { display: flex; align-items: center; gap: 14px; margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }
.episode-meta svg { width: 14px; height: 14px; }

/* ─── FEATURE STRIP ─── */
.feature-strip { background: var(--light-gray); }
.feature-item { padding: 32px; text-align: center; }
.feature-icon { width: 52px; height: 52px; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 24px; height: 24px; color: var(--gold); }
.feature-item h4 { margin-bottom: 8px; }

/* ─── DARK SECTION ─── */
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .divider { background: linear-gradient(90deg, var(--gold), transparent); }
.section-navy { background: var(--navy-mid); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }

/* ─── STATS ─── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.stat-box { background: var(--white); padding: 36px 24px; text-align: center; }
.stat-box strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-box strong span { color: var(--gold); }
.stat-box em { font-size: 0.82rem; color: var(--text-light); font-style: normal; font-weight: 500; letter-spacing: 0.04em; }

/* ─── EXPERT CARD ─── */
.expert-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expert-photo { aspect-ratio: 4/3; overflow: hidden; }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.expert-card:hover .expert-photo img { transform: scale(1.04); }
.expert-info { padding: 22px; }
.expert-info h4 { margin-bottom: 3px; font-size: 1.05rem; }
.expert-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.expert-info p { font-size: 0.87rem; }

/* ─── QUOTE / PULLQUOTE ─── */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--light-gray);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
}
.pullquote cite { display: block; margin-top: 10px; font-size: 0.82rem; font-style: normal; font-family: 'Inter', sans-serif; color: var(--text-light); font-weight: 600; }

/* ─── ACCORDION / FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; transition: all 0.25s; color: var(--text-mid); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 22px; }
.faq-answer p { font-size: 0.95rem; }
.faq-item.open .faq-answer { display: block; }

/* ─── NEWSLETTER ─── */
.newsletter-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  border-radius: 50%;
}
.newsletter-box h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 480px; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-success { display: none; background: rgba(61,153,112,0.15); border: 1px solid rgba(61,153,112,0.4); border-radius: var(--radius); padding: 14px 20px; color: var(--green-light); font-weight: 500; margin-top: 14px; }

/* ─── CONTACT FORM ─── */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: rgba(61,153,112,0.08);
  border: 1.5px solid rgba(61,153,112,0.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 16px;
  text-align: center;
}
.form-success h4 { color: var(--green); margin-bottom: 5px; font-family: 'Inter', sans-serif; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; margin: 0; }

/* ─── INFO BOX ─── */
.info-box { background: var(--light-gray); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.info-box.gold { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.25); }
.info-box.navy { background: rgba(13,27,42,0.04); border-color: rgba(13,27,42,0.12); }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon { width: 42px; height: 42px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail h5 { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 0.92rem; color: var(--text-dark); font-style: normal; margin: 0; }
.contact-detail a:hover { color: var(--gold); }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-light); }
.breadcrumb li a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--border); }
.breadcrumb li:last-child { color: var(--text-dark); font-weight: 500; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.35; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.page-hero .lead { color: rgba(255,255,255,0.7); }

/* ─── AUDIO PLAYER MOCK ─── */
.audio-player {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(201,168,76,0.2);
}
.play-btn {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 18px; height: 18px; color: var(--navy); margin-left: 2px; }
.audio-info { flex: 1; }
.audio-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.audio-subtitle { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.audio-progress { flex: 2; }
.progress-bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; position: relative; cursor: pointer; }
.progress-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 35%; }
.audio-time { font-size: 0.75rem; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; margin-top: 5px; }
.audio-duration { font-size: 0.78rem; color: rgba(255,255,255,0.5); flex-shrink: 0; }

/* ─── SIDEBAR ─── */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 0.95rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); font-family: 'Inter', sans-serif; }
.sidebar-list li { padding: 10px 0; border-bottom: 1px solid var(--mid-gray); font-size: 0.87rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a { color: var(--text-mid); transition: color 0.2s; display: flex; justify-content: space-between; align-items: center; }
.sidebar-list li a:hover { color: var(--gold); }
.sidebar-list li a span { font-size: 0.75rem; color: var(--text-light); }
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── TABLE ─── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table thead { background: var(--navy); color: var(--white); }
.data-table thead th { padding: 14px 18px; text-align: left; font-weight: 600; font-family: 'Inter', sans-serif; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.data-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.data-table tbody tr:hover { background: var(--light-gray); }
.data-table tbody td { padding: 14px 18px; color: var(--text-mid); }
.data-table tbody td:first-child { color: var(--text-dark); font-weight: 500; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--border)); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }
.timeline-date { font-size: 0.78rem; font-weight: 600; color: var(--gold); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.timeline-item h4 { margin-bottom: 6px; font-family: 'Inter', sans-serif; font-size: 0.97rem; }
.timeline-item p { font-size: 0.87rem; }

/* ─── PROCESS STEPS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 60px; right: 60px; height: 1px; background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold); border: 2px solid rgba(201,168,76,0.3); }
.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.85rem; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.87rem; margin: 16px 0 24px; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); gap: 20px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-link:hover { background: rgba(201,168,76,0.2); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }
.social-link:hover svg { color: var(--gold); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner p { font-size: 0.87rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── POLICY PAGES ─── */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--navy); }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--navy); font-family: 'Inter', sans-serif; }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; }
.policy-content ul { padding-left: 22px; margin-bottom: 14px; list-style: disc; }
.policy-content ul li { margin-bottom: 7px; font-size: 0.95rem; color: var(--text-mid); }
.policy-content ol { padding-left: 22px; margin-bottom: 14px; list-style: decimal; }
.policy-content ol li { margin-bottom: 7px; font-size: 0.95rem; color: var(--text-mid); }
.policy-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.policy-content table th { background: var(--light-gray); padding: 10px 14px; text-align: left; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--border); }
.policy-content table td { padding: 10px 14px; font-size: 0.87rem; border: 1px solid var(--border); color: var(--text-mid); }
.policy-toc { background: var(--light-gray); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 40px; border: 1px solid var(--border); }
.policy-toc h4 { margin-bottom: 14px; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.policy-toc ol { padding-left: 18px; list-style: decimal; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { font-size: 0.87rem; color: var(--text-mid); transition: color 0.2s; }
.policy-toc ol li a:hover { color: var(--gold); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; color: var(--white); }
.back-to-top:hover svg { color: var(--navy); }

/* ─── MISC ─── */
.highlight-text { background: linear-gradient(90deg, rgba(201,168,76,0.1), transparent); border-left: 3px solid var(--gold); padding: 12px 18px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0; }
.highlight-text p { margin: 0; font-size: 0.92rem; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; }
.badge-gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.badge-green { background: rgba(61,153,112,0.1); color: var(--green); }
.badge-navy { background: rgba(13,27,42,0.08); color: var(--navy); }
.two-col-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.content-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.92rem; }
.check-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat; margin-top: 1px; }
.divider-line { height: 1px; background: var(--border); margin: 40px 0; }
.map-placeholder { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 280px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.9rem; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 200;
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mobile-nav-close svg { width: 20px; height: 20px; color: var(--white); }
.mobile-nav a { display: block; padding: 15px 0; font-size: 1.1rem; color: rgba(255,255,255,0.82); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .sub-link { padding-left: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.55); }

/* ─── PAGE HERO INNER ─── */
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb { border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 32px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero-content { margin-bottom: 36px; }
.page-hero-stats { display: flex; gap: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.mini-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.mini-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── FEATURED ANALYSIS CARD ─── */
.featured-analysis-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.featured-img { overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.featured-body { padding: 40px 40px 40px 0; }

/* ─── SUBCAT CARD ─── */
.subcat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; text-decoration: none; transition: all 0.25s; }
.subcat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.subcat-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.subcat-icon svg { width: 22px; height: 22px; color: var(--gold); }
.subcat-card h4 { margin-bottom: 6px; font-size: 1rem; color: var(--text-dark); }
.subcat-card p { font-size: 0.85rem; color: var(--text-mid); flex: 1; margin-bottom: 14px; }
.subcat-count { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }

/* ─── SORT BAR ─── */
.sort-bar { display: flex; align-items: center; gap: 4px; }
.sort-btn { font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; color: var(--text-mid); transition: all 0.2s; }
.sort-btn:hover, .sort-btn.active { background: var(--navy); color: var(--white); }

/* ─── DATA METRIC CARD ─── */
.data-metric-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.data-metric-label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.data-metric-value { display: block; font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.data-metric-value em { font-style: normal; font-size: 1.4rem; color: rgba(201,168,76,0.7); }
.data-metric-trend { display: block; font-size: 0.78rem; font-weight: 600; margin: 8px 0 6px; }
.trend-up { color: var(--green-light); }
.trend-down { color: var(--green-light); }
.trend-neg { color: #e05252; }
.trend-neutral { color: rgba(255,255,255,0.5); }
.data-metric-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ─── RELATED CATEGORY CARD ─── */
.related-category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all 0.25s; }
.related-category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.related-category-card svg { width: 28px; height: 28px; color: var(--gold); }
.related-category-card h4 { color: var(--text-dark); font-size: 1.1rem; }
.related-category-card p { font-size: 0.88rem; color: var(--text-mid); }
.link-arrow { font-size: 0.82rem; font-weight: 600; color: var(--gold); margin-top: 4px; }

/* ─── INTERVIEW CARD ─── */
.interview-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column; }
.interview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.interview-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.interview-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.interview-card:hover .interview-card-img img { transform: scale(1.04); }
.interview-duration { position: absolute; bottom: 12px; right: 12px; background: rgba(13,27,42,0.85); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
.interview-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.interview-guest { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.interview-guest-avatar { width: 38px; height: 38px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.interview-guest-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.interview-guest-title { font-size: 0.75rem; color: var(--text-light); }
.interview-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.interview-card-body h3 a:hover { color: var(--gold); }
.interview-card-body p { font-size: 0.87rem; flex: 1; }
.interview-card-footer { padding: 14px 24px; border-top: 1px solid var(--mid-gray); display: flex; align-items: center; justify-content: space-between; }

/* ─── BLOG ARTICLE CARD ─── */
.blog-article-row { display: grid; grid-template-columns: 260px 1fr; gap: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; margin-bottom: 20px; }
.blog-article-row:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.blog-article-row-img { overflow: hidden; }
.blog-article-row-img img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; transition: transform 0.4s; }
.blog-article-row:hover .blog-article-row-img img { transform: scale(1.04); }
.blog-article-row-body { padding: 28px 28px 28px 0; display: flex; flex-direction: column; }
.blog-article-row-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-article-row-body h3 a:hover { color: var(--gold); }
.blog-article-row-body p { font-size: 0.9rem; flex: 1; }

/* ─── NEWSLETTER PAGE SPECIFIC ─── */
.nl-benefit { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.nl-benefit-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nl-benefit-icon svg { width: 20px; height: 20px; color: var(--gold); }
.nl-benefit h4 { font-size: 0.97rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.nl-benefit p { font-size: 0.87rem; margin: 0; }

/* ─── CONTACT PAGE SPECIFIC ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stat-strip { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col-content { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-box { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
}
