
 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,500&family=Inter:wght@300;400;500;600&display=swap');
 
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F7F5F2;
  color: #1a1a1a;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
 
/* ── VARIABLES ── */
:root {
  --red: #C8251C;
  --red-dark: #9B1A13;
  --red-light: #FAECE7;
  --navy: #0D1F3C;
  --cream: #F7F5F2;
  --white: #FFFFFF;
  --gray-100: #F1EFE8;
  --gray-300: #D3D1C7;
  --gray-500: #888780;
  --gray-700: #444441;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}
 
/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: #aab8cc;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar a { color: #aab8cc; transition: color var(--transition); }
.top-bar a:hover { color: #E8B84B; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-socials { display: flex; gap: 8px; }
.top-socials a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.top-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
 

/* ── PAGE HERO BAND ── */
.page-hero {
  background: var(--navy);
  padding: 56px 48px 52px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 360px; height: 100%;
  background: rgba(200,37,28,.08);
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-left {}
.page-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(200,37,28,.8); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); display: block; }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; color: #fff; line-height: 1.1;
}
.page-title em { color: #E8B84B; font-style: normal; }
.page-hero-right { text-align: right; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,.45); display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: rgba(255,255,255,.75); }
 
/* ── MAIN LAYOUT ── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}
 
/* ── SECTION DIVIDER ── */
.section-divider {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
}
.divider-line { flex: 1; height: 1px; background: var(--gray-300); }
.divider-label {
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray-500); white-space: nowrap;
}
 
/* ── MAIN GRID ── */
.dg-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
 
/* ── LEFT: TEXT COLUMN ── */
.dg-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 24px;
}
.dg-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px; background: var(--red);
}
 
.dg-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 22px;
  text-align: justify;
}
.dg-body p:last-child { margin-bottom: 0; }
 
/* Pull quote */
.dg-pull {
  margin: 36px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--red);
  background: var(--red-light);
  border-radius: 0 10px 10px 0;
}
.dg-pull p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--red-dark);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}
 
/* Signature block */
.dg-signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-300);
  display: flex; align-items: center; gap: 18px;
}
.sig-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: #E8B84B;
}
.sig-text {}
.sig-greeting { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.sig-name { font-size: 16px; font-weight: 600; color: var(--navy); }
.sig-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; letter-spacing: .03em; }
 
/* ── RIGHT: PHOTO COLUMN ── */
.dg-photo-col { display: flex; flex-direction: column; gap: 24px; }
 
/* Photo frame */
.photo-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  position: relative;
  background: var(--gray-100);
  aspect-ratio: 3/4;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--gray-500);
  font-size: 13px;
}
.photo-placeholder svg { opacity: .35; }
.photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(13,31,60,.85) 0%, transparent 100%);
  padding: 32px 20px 18px;
  color: #fff;
}
.photo-badge-name { font-size: 15px; font-weight: 600; }
.photo-badge-role { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 2px; }
 
/* Stats grid */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(200,37,28,.08);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--red); line-height: 1;
}
.stat-lbl {
  font-size: 11px; color: var(--text-muted);
  margin-top: 6px; line-height: 1.4;
  font-weight: 500;
}
 
/* Vision card */
.vision-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px 22px;
  color: rgba(255,255,255,.8);
}
.vision-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600; color: #E8B84B;
  margin-bottom: 10px;
}
.vision-card p { font-size: 13px; line-height: 1.75; }
 
/* ── FOOTER ── */
footer {
  background: #08152A;
  color: rgba(255,255,255,.55);
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12px;
}
footer a { color: #E8B84B; }
footer a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .dg-grid { grid-template-columns: 1fr; }
  .dg-photo-col { order: -1; }
  .photo-frame { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .top-bar { padding: 6px 20px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 40px 20px 36px; }
  .page-content { padding: 40px 20px 60px; }
  footer { padding: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}