/* =========================================
   SK Properties — Global Stylesheet
   ========================================= */

:root {
  --navy:       #0A1628;
  --navy-light: #112240;
  --navy-mid:   #1a3356;
  --gold:       #C9A84C;
  --gold-light: #E2C074;
  --gold-dark:  #A8842E;
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --text:       #2C3E50;
  --text-light: #6B7C93;
  --border:     #D8D0C4;
  --success:    #27AE60;
  --danger:     #E74C3C;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(10,22,40,.08);
  --shadow:    0 6px 32px rgba(10,22,40,.14);
  --shadow-lg: 0 16px 64px rgba(10,22,40,.22);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

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

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* ============ LAYOUT ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark .section-sub { color: rgba(255,255,255,.65); }
.section--cream { background: var(--off-white); }
.section--gold-border { border-top: 4px solid var(--gold); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: .6rem 1.4rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: .8rem 0;
}
.navbar.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: .8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-login {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold) !important;
  background: rgba(201,168,76,.1) !important;
  border: 1px solid rgba(201,168,76,.3);
  padding: .5rem 1.2rem !important;
  border-radius: var(--radius) !important;
}
.nav-login:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,.95) 0%, rgba(17,34,64,.85) 60%, rgba(10,22,40,.7) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}
.hero-accent {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  max-width: 360px;
  width: 100%;
}
.hero-card-title {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-card-metric:last-child { border-bottom: none; }
.hero-card-metric-label { font-size: .85rem; color: rgba(255,255,255,.6); }
.hero-card-metric-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
}
.hero-card-metric-value.positive { color: #4CAF85; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--gold);
  padding: 1.2rem 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}
.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
}
.card-body { padding: 1.75rem; }
.card-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.card-title {
  font-size: 1.25rem;
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.card-text { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.card-metric-value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.card-metric-label {
  font-size: .75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.card-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============ STAT BLOCKS ============ */
.stat-block {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}
.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: .75rem auto;
  opacity: .4;
}

/* ============ PROCESS STEPS ============ */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.step-content h4 { margin-bottom: .4rem; color: var(--navy); }
.step-content p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ============ TABLE ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: .9rem 1.25rem;
  text-align: left;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.data-table th:first-child { border-radius: var(--radius) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.data-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:hover td { background: var(--off-white); }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { font-weight: 500; color: var(--navy); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ============ TABS ============ */
.tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: .65rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: none;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s ease; }

/* ============ ACCORDION ============ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--off-white); }
.accordion-btn.active { background: var(--navy); color: var(--white); }
.accordion-icon {
  width: 24px; height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--white);
}
.accordion-content.open { display: block; animation: fadeIn .25s ease; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }

/* ============ ALERTS ============ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.alert-info { background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); color: var(--navy); }
.alert-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #1a6b3a; }
.alert-warning { background: rgba(241,196,15,.1); border: 1px solid rgba(241,196,15,.3); color: #7d6608; }

/* ============ BADGES ============ */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(201,168,76,.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,.3); }
.badge-green { background: rgba(39,174,96,.12); color: #1a6b3a; border: 1px solid rgba(39,174,96,.25); }
.badge-navy { background: var(--navy); color: var(--white); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin-top: .75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* ============ FOOTER ============ */
footer {
  background: #06101e;
  color: rgba(255,255,255,.65);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-desc {
  font-size: .875rem;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }
.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .875rem;
  align-items: flex-start;
}
.footer-contact-icon { color: var(--gold); margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text { font-size: .8rem; }
.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  max-width: 640px;
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ============ INVESTOR PORTAL ============ */
.portal-sidebar {
  position: sticky;
  top: 90px;
}
.portal-nav { display: flex; flex-direction: column; gap: .25rem; }
.portal-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.portal-nav-item:hover { background: var(--off-white); color: var(--navy); }
.portal-nav-item.active { background: var(--navy); color: var(--white); }
.portal-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.comment-thread { display: flex; flex-direction: column; gap: 1.25rem; }
.comment {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
}
.comment.admin-comment { border-left-color: var(--gold); background: rgba(201,168,76,.06); }
.comment-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.comment-avatar.admin { background: var(--gold); color: var(--navy); }
.comment-header {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .4rem;
  flex-wrap: wrap;
}
.comment-author { font-weight: 600; color: var(--navy); font-size: .9rem; }
.comment-time { font-size: .78rem; color: var(--text-light); }
.comment-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: .1rem .5rem;
  border-radius: 100px;
}
.comment-body { font-size: .9rem; color: var(--text); line-height: 1.7; }

/* ============ MILESTONE TRACKER ============ */
.milestone-track { position: relative; padding-left: 2rem; }
.milestone-track::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.milestone {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -1.5rem; top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}
.milestone.complete::before { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.milestone.active::before { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); animation: pulse 2s infinite; }
.milestone-title { font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.milestone-date { font-size: .8rem; color: var(--text-light); margin-bottom: .4rem; }
.milestone-desc { font-size: .875rem; color: var(--text-light); line-height: 1.6; }
.milestone-status {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: .5rem;
}
.milestone.complete .milestone-status { color: var(--success); }
.milestone.active .milestone-status { color: var(--gold); }
.milestone.pending .milestone-status { color: var(--text-light); }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--gold); }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,.25); }
}
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============ UTILITIES ============ */
.gold { color: var(--gold); }
.gold-bg { background: var(--gold); }
.navy { color: var(--navy); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.divider-gold { height: 2px; background: linear-gradient(90deg, var(--gold), transparent); width: 60px; margin: 1rem 0; }
.text-gold { color: var(--gold); }
.font-head { font-family: var(--font-head); }
.highlight-box {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.risk-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.risk-row:last-child { border-bottom: none; }
.risk-label { font-weight: 600; color: var(--navy); font-size: .9rem; }
.risk-mitigation { font-size: .9rem; color: var(--text-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: .25rem;
  }
  .nav-links.open + .nav-actions {
    display: flex;
    position: absolute;
    top: calc(100% + /* dynamic */0px);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .risk-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .btn { padding: .75rem 1.5rem; }
  .hero { padding: 7rem 0 3rem; }
  .page-hero { padding: 6rem 0 2.5rem; }
}
