/* ═══════════════════════════════════════════════════════
   CHETA VICTOR — GLOBAL STYLESHEET
   Forensic Investigations & Compliance Consulting
   Design System: Navy · Gold · Cream
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --navy:          #0d1b2a;
  --navy-light:    #1a2d42;
  --navy-mid:      #152338;
  --navy-card:     #112036;
  --gold:          #c9a84c;
  --gold-light:    #e2c47a;
  --gold-dim:      rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.22);
  --gold-glow:     rgba(201,168,76,0.08);
  --cream:         #f5f0e8;
  --cream-dim:     #ede8de;
  --text-body:     rgba(245,240,232,0.72);
  --text-muted:    rgba(245,240,232,0.42);
  --text-dark:     #1a1a2e;
  --red:           #8b1a1a;
  --red-bg:        rgba(139,26,26,0.07);
  --green:         #1e5c2e;
  --green-bg:      rgba(30,92,46,0.08);
  --radius:        4px;
  --shadow:        0 24px 80px rgba(0,0,0,0.45);
  --transition:    all 0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  line-height: 1.15;
}

h1 { font-size: clamp(32px, 5vw, 64px); font-weight: 900; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 15px; font-weight: 700; }

p { color: var(--text-body); font-weight: 300; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

strong { color: var(--cream); font-weight: 500; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 32px; }

.page-wrap { padding-top: 68px; flex: 1 0 auto; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  height: 68px;
  background: rgba(13,27,42,0.97);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: none;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.nav-brand-creds {
  font-size: 9.5px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.current { color: var(--gold); background: var(--gold-dim); }

.nav-chevron {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  padding: 8px 12px 5px;
  font-weight: 600;
}

.dd-divider { height: 1px; background: var(--gold-border); margin: 5px 0; opacity: 0.5; }

.dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--text-body);
  border-radius: 3px;
  transition: var(--transition);
  font-weight: 400;
  text-align: left;
}
.dd-item:hover { background: var(--gold-dim); color: var(--gold); padding-left: 16px; }
.dd-item.live { color: var(--cream); font-weight: 500; }
.dd-item.live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.dd-soon {
  margin-left: auto;
  font-size: 9px;
  color: var(--gold);
  opacity: 0.55;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--navy-mid);
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: auto;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ph-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.ph-title { margin-bottom: 14px; }
.ph-title span { color: var(--gold); }
.ph-sub {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

/* ════════════════════════════════════════
   CONTENT SECTIONS
════════════════════════════════════════ */
.content { padding: 64px 0 80px; position: relative; z-index: 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ── Article body ── */
.article h2 {
  color: var(--cream);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.article h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article h3 { color: var(--gold-light); margin-top: 24px; }
.article p { color: var(--text-body); line-height: 1.85; margin-bottom: 18px; }
.article ul, .article ol { margin: 14px 0 20px 0; display: grid; gap: 8px; }
.article li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.65;
}
.article li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 3px;
}
.article ol { counter-reset: ol-counter; }
.article ol li::before {
  content: counter(ol-counter);
  counter-increment: ol-counter;
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  width: 22px; height: 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Cards ── */
.card {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(201,168,76,0.3); }

.card-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; padding: 24px 28px; }

.card-num-header {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.card-num-block {
  width: 72px;
  background: rgba(0,0,0,0.28);
  border-right: 1px solid rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  flex-shrink: 0;
}
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.card-num-sub { font-size: 8px; color: var(--text-muted); margin-top: 4px; }

.card-head-content { flex: 1; padding: 16px 22px; }
.card-cat {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 4px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin: 0;
}
.card-sub { font-size: 11.5px; color: var(--text-muted); font-weight: 300; margin-top: 3px; }

.card-risk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-shrink: 0;
}
.risk-label-sm { font-size: 8.5px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.risk-bars { display: flex; gap: 3px; }
.rb { width: 7px; height: 20px; border-radius: 2px; background: rgba(255,255,255,0.06); }
.rb.h { background: #8b1a1a; }
.rb.m { background: #b8651a; }
.rb.l { background: #a89030; }

/* Card content sections */
.card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}
.card-desc strong { color: var(--cream); font-weight: 500; }

.sub-pts { display: grid; gap: 9px; margin-bottom: 18px; }
.sub-pt { display: flex; gap: 10px; align-items: flex-start; }
.sp-dot { flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; margin-top: 7px; }
.sp-text { font-size: 12.5px; color: var(--text-body); line-height: 1.65; font-weight: 300; }
.sp-text strong { color: var(--cream); font-weight: 500; }

/* Red flags */
.red-flags {
  background: var(--red-bg);
  border: 1px solid rgba(139,26,26,0.22);
  border-radius: 3px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.rf-head { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #e07070; margin-bottom: 10px; }
.rf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.rf-item { display: flex; gap: 7px; font-size: 11.5px; color: rgba(224,112,112,0.82); line-height: 1.5; font-weight: 300; }
.rf-arr { color: #c0392b; flex-shrink: 0; font-size: 10px; margin-top: 2px; }

/* Fix block */
.fix-block {
  background: var(--green-bg);
  border-left: 3px solid rgba(30,92,46,0.5);
  padding: 13px 16px;
  border-radius: 0 3px 3px 0;
}
.fix-head { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #6dbf7e; margin-bottom: 9px; }
.fix-pts { display: grid; gap: 6px; }
.fix-pt { display: flex; gap: 8px; font-size: 12px; color: var(--text-body); line-height: 1.5; font-weight: 300; }
.fix-check { color: #6dbf7e; flex-shrink: 0; font-size: 11px; margin-top: 2px; }

/* Stat strip */
.stat-strip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 22px 13px 94px;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.stat-ico { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.stat-txt { font-size: 11.5px; color: var(--text-muted); font-weight: 300; line-height: 1.6; font-style: italic; }
.stat-txt strong { color: var(--gold); font-weight: 500; font-style: normal; }

/* ── Sidebar ── */
.sidebar { display: grid; gap: 24px; }

/* Professional Insight box */
.insight-box {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.insight-header {
  background: var(--gold);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.insight-header-icon { font-size: 16px; }
.insight-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.insight-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; padding: 18px; }
.insight-body p {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 10px;
  font-style: italic;
}
.insight-body p:last-child { margin-bottom: 0; }
.insight-attr {
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Audit tip box */
.tip-box {
  background: rgba(30,92,46,0.08);
  border: 1px solid rgba(30,92,46,0.25);
  border-radius: var(--radius);
  padding: 18px;
}
.tip-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6dbf7e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tip-text { font-size: 12.5px; color: var(--text-body); line-height: 1.75; font-weight: 300; }

/* Sidebar nav */
.sidebar-nav {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 18px;
}
.sn-title {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 12px;
}
.sn-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-body);
  border-radius: 3px;
  transition: var(--transition);
  font-weight: 300;
}
.sn-item:hover { background: var(--gold-dim); color: var(--gold); }
.sn-item.active { background: var(--gold-dim); color: var(--gold); font-weight: 500; }
.sn-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.5; }
.sn-item.active .sn-dot { opacity: 1; }

/* CTA sidebar card */
.cta-sidebar {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.cta-sidebar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.cta-sidebar p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-full { width: 100%; }

/* ── OVERVIEW / INTRO BLOCK ── */
.intro-block {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin-bottom: 40px;
}
.intro-quote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 14px;
}
.intro-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; font-size: 13.5px; color: var(--text-body); line-height: 1.85; font-weight: 300; }

/* ── FRAMEWORK TABLE ── */
.fw-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.fw-table th {
  background: var(--navy-mid);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-border);
}
.fw-table td {
  padding: 11px 16px;
  font-size: 12.5px;
  color: var(--text-body);
  font-weight: 300;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  vertical-align: top;
  line-height: 1.6;
}
.fw-table tr:last-child td { border-bottom: none; }
.fw-table tr:hover td { background: rgba(201,168,76,0.03); }

/* ── SUMMARY GRID ── */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.sg-item {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sg-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
  flex-shrink: 0;
}
.sg-title { font-size: 12px; font-weight: 500; color: var(--cream); margin-bottom: 3px; }
.sg-desc { font-size: 11px; color: var(--text-muted); font-weight: 300; line-height: 1.5; }

/* ── KEY PRINCIPLE ── */
.key-principle {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 14px 20px;
  margin: 18px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.kp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.kp-text { font-size: 13px; color: var(--text-body); line-height: 1.65; font-style: italic; }

/* ── SECTION DIVIDER ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 28px;
  margin-top: 48px;
}
.sd-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.sd-count { font-size: 10px; color: var(--text-muted); font-weight: 300; }

/* ── CONCLUSION / CTA BLOCK ── */
.conclusion {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 44px 48px;
  margin-top: 56px;
  text-align: center;
}
.conclusion h2 { margin-bottom: 16px; margin-top: 0; border: none; padding: 0; }
.conclusion p { max-width: 640px; margin: 0 auto 24px; }
.conclusion-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-border);
}

/* ── COMING SOON ── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
  text-align: center;
  padding: 60px 32px;
}
.cs-icon-lg { font-size: 56px; margin-bottom: 22px; opacity: 0.35; }
.cs-title-lg {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.cs-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 28px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  flex-shrink: 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 44px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand-creds { font-size: 11px; color: var(--gold); font-weight: 300; margin-bottom: 14px; }
.footer-brand-desc { font-size: 12.5px; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.footer-col-title {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 11.5px; color: var(--text-muted); font-weight: 300; }
.footer-tags { font-size: 10.5px; color: var(--gold); opacity: 0.5; letter-spacing: 0.5px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none !important; }
  .nav-menu.open { display: flex !important; }
  .hamburger { display: flex !important; }
  .stat-strip { padding: 12px 18px; }
  .card-num-block { width: 56px; }
  .rf-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .conclusion { padding: 32px 24px; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .content { padding: 40px 0 60px; }
  .page-hero { padding: 48px 0 36px; }
}
