/* ============================================
   WealthTac Global Asset Management
   Design System — v3 (Logo + Larger Fonts + Visuals)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0C1F3F;
  --navy-light: #162D52;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A88B3A;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --charcoal: #2C2C2C;
  --warm-gray: #6B6B6B;
  --light-gray: #E8E6E1;
  --border-gray: #D9D7D2;
  --text-body: #3A3A3A;
  --text-muted: #7A7A7A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --max-width: 1200px;
  --section-padding: 100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

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

/* Logo image */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--charcoal);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--navy);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

/* ---------- Dropdown menus ---------- */
.nav-item {
  position: relative;
}

.nav-item > a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--charcoal);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-item > a:hover,
.nav-item > a.active {
  color: var(--navy);
}

.nav-item > a:hover::after,
.nav-item > a.active::after {
  width: 100%;
}

.nav-item .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--charcoal);
  border-bottom: 1.5px solid var(--charcoal);
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform 0.3s ease;
  margin-bottom: 3px;
}

.nav-item:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 200px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 8px 0;
  margin-top: 8px;
  border-top: 2px solid var(--gold);
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--off-white);
  color: var(--navy);
}

/* Mobile: dropdowns expand inline */
.nav-desktop.mobile-open .nav-item {
  flex-direction: column;
  width: 100%;
}

.nav-desktop.mobile-open .nav-item > a {
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 16px;
}

.nav-desktop.mobile-open .nav-item .dropdown-toggle::after {
  display: none;
}

.nav-desktop.mobile-open .dropdown-content {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  border: none;
  box-shadow: none;
  margin-top: 0;
  padding: 0 0 0 16px;
  border-top: none;
  background: transparent;
}

.nav-desktop.mobile-open .dropdown-content a {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--light-gray);
  white-space: normal;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Mobile nav open state */
.nav-desktop.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  gap: 0;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-md);
}

.nav-desktop.mobile-open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 16px;
}

.nav-desktop.mobile-open a:last-child {
  border-bottom: none;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  padding: 100px 24px 70px;
  max-width: 840px;
  margin: 0 auto;
}

.hero-overline {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 62px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
}

/* ---------- Section Overlines & Labels ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: var(--gold); }

/* ---------- Full-width Image Section ---------- */
.section-image-full {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.section-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-image-full .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,31,63,0.3) 0%, rgba(12,31,63,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-image-full .image-overlay-text {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

.two-col-text p:last-child { margin-bottom: 0; }

.two-col-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---------- Stats ---------- */
.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 40px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gray);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  margin-bottom: 24px;
  font-size: 22px;
}

.team-member-photo {
  width: 164px;
  height: 164px;
  display: block;
  margin: 0 auto 24px;
  object-fit: cover;
  object-position: center 35%;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--border-gray), var(--shadow-sm);
}

.card .team-member-role {
  margin: -4px 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
}

.card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Service Category Cards ---------- */
.service-category {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 44px;
  transition: box-shadow var(--transition);
}

.service-category:hover {
  box-shadow: var(--shadow-md);
}

.service-category h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 22px;
}

.service-category ul {
  list-style: none;
  padding: 0;
}

.service-category li {
  font-size: 16px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 18px;
}

.service-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service-category li:last-child { border-bottom: none; }

/* ---------- TAC Values ---------- */
.tac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tac-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 44px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.tac-card:hover { box-shadow: var(--shadow-md); }

.tac-letter {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}

.tac-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px;
}

.tac-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Pillars Grid ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 36px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.pillar-card:hover { box-shadow: var(--shadow-md); }

.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Why HK Grid ---------- */
.hk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hk-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 40px;
  transition: box-shadow var(--transition);
}

.hk-card:hover { box-shadow: var(--shadow-md); }

.hk-card .hk-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 14px;
}

.hk-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.hk-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--navy);
  padding: 160px 0 70px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---------- Service Icons (Professional) ---------- */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--gold);
  background: transparent;
}
.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

/* ---------- Subtle TAC Strip ---------- */
.tac-subtle-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  margin-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.tac-subtle-item {
  text-align: center;
  position: relative;
}
.tac-subtle-letter {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
  opacity: 0.8;
}
.tac-subtle-word {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.tac-subtle-sep {
  width: 1px;
  height: 20px;
  background: rgba(201,168,76,0.25);
}

/* ---------- Full-Width Statement Banner ---------- */
.statement-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.statement-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,31,63,0.75) 0%, rgba(12,31,63,0.45) 50%, rgba(201,168,76,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.statement-text {
  text-align: center;
}
.statement-text h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1.2;
}
.statement-text .st-gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ---------- Service Accent Cards (no icons) ---------- */
.service-accent-card {
  background: var(--white);
  border: none;
  padding: 44px 36px 36px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-accent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity var(--transition), width var(--transition);
}
.service-accent-card:hover::before {
  opacity: 1;
  width: 6px;
}
.service-accent-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-accent-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-accent-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-accent-card .card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.service-accent-card .card-link:hover { color: var(--navy); }

/* Color-shaded card variants */
.card-shade-navy { background: linear-gradient(145deg, #0C1F3F 0%, #162D52 100%); }
.card-shade-navy::before { display: none; }
.card-shade-navy h3,
.card-shade-navy p { color: var(--white); }
.card-shade-navy p { color: rgba(255,255,255,0.7); }
.card-shade-navy .card-link { color: var(--gold-light); }

.card-shade-gold { background: linear-gradient(145deg, #C9A84C 0%, #D4B96A 100%); }
.card-shade-gold::before { display: none; }
.card-shade-gold h3 { color: var(--navy); }
.card-shade-gold p { color: rgba(12,31,63,0.75); }
.card-shade-gold .card-link { color: var(--navy); font-weight: 600; }

.card-shade-offwhite { background: var(--off-white); }
.card-shade-offwhite::before { background: var(--navy); opacity: 0.3; }

.card-shade-warm { background: linear-gradient(145deg, #f5f0e8 0%, #ede5d8 100%); }
.card-shade-warm::before { background: var(--gold-dark); opacity: 0.35; }

/* ---------- Investment Process Flow Diagram ---------- */
.process-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 48px 0 16px;
  margin-top: 20px;
}
.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,168,76,0.3) 100%);
  z-index: 0;
}
.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.flow-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.flow-step:hover .flow-step-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15), 0 4px 20px rgba(0,0,0,0.15);
}
.flow-step h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 18px;
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: -36px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-brand .tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-serif);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border-gray);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

/* ---------- Reports ---------- */
.insights-section-content {
  width: 100%;
}

.report-item {
  display: block;
  padding: 8px 0 10px;
}

.report-link {
  display: block;
}

.report-link:hover h4,
.report-link:focus-visible h4 {
  color: var(--gold);
}

.report-icon {
  color: var(--text-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.report-info h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.5;
  margin: 4px 0 3px;
  transition: color var(--transition);
}

.report-info p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.65;
}

.report-empty {
  text-align: center;
  margin-top: 36px;
  padding: 24px;
  border: 1px dashed var(--border-gray);
  border-radius: 4px;
}

.report-empty p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Media ---------- */
.media-section {
  background: #e9e9e7;
}

.media-section-head {
  margin-bottom: 38px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 58px);
}

.media-card {
  min-width: 0;
}

.media-card-image-link {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  border-radius: 3px 18px 3px 18px;
  background: var(--navy);
  margin-bottom: 26px;
  box-shadow: 0 18px 32px rgba(15, 29, 48, 0.16), 0 3px 8px rgba(15, 29, 48, 0.08);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.media-card-image-link::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgba(15, 29, 48, 0.04) 20%, rgba(15, 29, 48, 0.76) 100%);
  opacity: 0.18;
  transition: opacity 0.45s ease;
}

.media-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1), opacity 0.35s ease;
}

.media-card-image-overlay {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 29, 48, 0.64);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.4s ease, background 0.35s ease;
}

.media-card-image-overlay svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.media-card:hover .media-card-image-link,
.media-card-image-link:focus-visible {
  box-shadow: 0 24px 40px rgba(15, 29, 48, 0.22), 0 6px 12px rgba(15, 29, 48, 0.1);
  transform: translateY(-4px);
}

.media-card:hover .media-card-image,
.media-card-image-link:focus-visible .media-card-image {
  transform: scale(1.055);
  opacity: 0.96;
}

.media-card:hover .media-card-image-link::before,
.media-card-image-link:focus-visible::before {
  opacity: 0.82;
}

.media-card:hover .media-card-image-overlay,
.media-card-image-link:focus-visible .media-card-image-overlay {
  opacity: 1;
}

.media-card:hover .media-card-image-overlay,
.media-card-image-link:focus-visible .media-card-image-overlay {
  transform: translateY(0);
}

.media-card-image-link:focus-visible {
  outline: 3px solid rgba(174, 141, 86, 0.46);
  outline-offset: 4px;
}

.media-card-meta {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.media-card h3 {
  font-family: var(--font-sans);
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 12px;
}

.media-card h3 a {
  color: inherit;
  transition: color var(--transition);
}

.media-card h3 a:hover,
.media-card h3 a:focus-visible {
  color: var(--gold-dark);
}

.media-card > p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.media-card-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 166px;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition);
}

.media-card-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.media-card-button:hover,
.media-card-button:focus-visible {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.media-empty {
  grid-column: 1 / -1;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.45);
}

/* ---------- Admin ---------- */
.admin-body {
  min-height: 100vh;
  background: var(--off-white);
}

.admin-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px;
}

.admin-shell-narrow {
  max-width: 520px;
  padding-top: 12vh;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-topbar h1,
.admin-panel h1 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.admin-panel h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) minmax(220px, 1fr);
  gap: 18px;
}

.admin-media-form-grid {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(145px, 0.65fr)) repeat(2, minmax(190px, 0.9fr));
}

.admin-thumbnail-generator {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  margin: 22px 0;
  border: 1px solid var(--border-gray);
  background: #f5f4f0;
}

.admin-thumbnail-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  background: #e4e1d9;
  box-shadow: inset 0 0 0 1px rgba(20, 35, 55, 0.05);
}

.admin-thumbnail-preview canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-thumbnail-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: var(--navy);
}

.admin-thumbnail-placeholder span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 64px;
  border: 1px solid rgba(20, 35, 55, 0.25);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.admin-thumbnail-placeholder strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.admin-thumbnail-placeholder small,
.admin-thumbnail-details p {
  color: var(--text-muted);
  line-height: 1.5;
}

.admin-thumbnail-generator[data-state="loading"] .admin-thumbnail-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.62) 48%, transparent 66%);
  transform: translateX(-100%);
  animation: adminThumbnailLoading 1.25s ease-in-out infinite;
}

.admin-thumbnail-generator[data-state="error"] {
  border-color: rgba(159, 45, 45, 0.4);
  background: rgba(159, 45, 45, 0.04);
}

.admin-thumbnail-generator[data-state="error"] .admin-thumbnail-details p {
  color: #9f2d2d;
}

.admin-thumbnail-generator[data-state="ready"] {
  border-color: rgba(40, 116, 69, 0.35);
}

.admin-thumbnail-retry {
  margin-top: 12px;
  padding: 9px 12px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

@keyframes adminThumbnailLoading {
  to { transform: translateX(100%); }
}

.admin-message {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.admin-message[data-type="error"] { color: #9f2d2d; }
.admin-message[data-type="success"] { color: #287445; }

.admin-field-help {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-section-head h2 {
  margin-bottom: 0;
}

.admin-section-head select {
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  font-family: var(--font-sans);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border-gray);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--navy);
  font-weight: 600;
}

.admin-table a {
  color: var(--navy);
  font-weight: 500;
}

.admin-status {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: capitalize;
}

.admin-status-published {
  background: rgba(40, 116, 69, 0.12);
  color: #287445;
}

.admin-status-draft {
  background: rgba(122, 122, 122, 0.14);
  color: var(--warm-gray);
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-actions button {
  padding: 7px 10px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.admin-thumbnail {
  width: 88px;
  height: 56px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border-gray);
  background: var(--light-gray);
}

.admin-logout {
  color: var(--navy);
  border-color: var(--border-gray);
}

/* ---------- Legal Page ---------- */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin: 56px 0 24px;
}

.legal-section h2:first-child { margin-top: 0; }

.legal-section h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 36px 0 14px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 18px;
}

.legal-section ul li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 10px;
}

.legal-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 56px 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-image img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .admin-form-grid { grid-template-columns: 1fr 1fr; }
  .admin-media-form-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
  .hero-title { font-size: 40px; }
  .hero-subtitle { font-size: 17px; }
  .section-title { font-size: 34px; }
  .section { padding: 64px 0; }
  .tac-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .hk-grid { grid-template-columns: 1fr; }
  .team-grid .team-card-cyrus { order: 1; }
  .team-grid .team-card-michael { order: 2; }
  .team-grid .team-card-kerr { order: 3; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { flex-direction: column; gap: 20px; }
  .page-header h1 { font-size: 36px; }
  .page-header { padding: 130px 0 50px; }
  .hero-content { padding: 64px 24px 40px; }
  .hero-image img { height: 260px; }
  .section-image-full { height: 240px; }
  .section-image-full .image-overlay-text { font-size: 24px; }
  .logo img { height: 38px; }
  .header-inner { height: 68px; }
  .statement-banner { height: 280px; }
  .statement-text h2 { font-size: 32px; letter-spacing: 2px; }
  .process-flow { flex-direction: column; gap: 32px; padding: 0; }
  .process-flow::before { display: none; }
  .flow-arrow { transform: rotate(90deg); margin-top: 0; justify-content: center; }
  .tac-subtle-strip { gap: 20px; }
  .tac-subtle-letter { font-size: 12px; }
  .tac-subtle-word { font-size: 8px; }
  .admin-shell { padding: 32px 18px; }
  .admin-panel { padding: 24px; }
  .admin-topbar,
  .admin-section-head { flex-direction: column; align-items: stretch; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-media-form-grid { grid-template-columns: 1fr; }
  .admin-thumbnail-generator { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .logo img { height: 34px; }
  .admin-panel { padding: 20px; }
  .admin-topbar h1,
  .admin-panel h1 { font-size: 32px; }
}
