/* ===== CSS VARIABLES ===== */
:root {
  --black: #050810;
  --dark-blue: #071832;
  --mid-blue: #0d2a52;
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --gold-dim: #a07830;
  --white: #f5f5f5;
  --white-dim: rgba(245, 245, 245, 0.7);
  --border: rgba(201, 168, 76, 0.25);
  --glow: rgba(201, 168, 76, 0.15);
  /* light section */
  --light-bg: #f8f7f3;
  --light-card: #ffffff;
  --dark-text: #0d1a2e;
  --dark-muted: #4a5568;
  --light-border: rgba(201, 168, 76, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 10px;
}

/* ===== UTILITY ===== */
.gold {
  color: var(--gold);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.5rem;
  color: var(--white);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.25rem 0 2rem;
  border-radius: 2px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 6%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--gold-dim);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4) !important;
  color: var(--black) !important;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 120px 6% 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(13, 42, 82, 0.9) 0%, var(--black) 70%);
}

/* animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(60px);
  }
}

/* floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(13, 42, 82, 0.8) 0%, transparent 70%);
  animation: float1 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  right: 20%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  animation: float2 6s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(20px)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.45), 0 0 35px rgba(201, 168, 76, 0.2);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
  display: none !important;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  animation: slideInRight 1s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--glow);
}

.hero-stats {
  margin-top: 3.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

@media (min-width: 1024px) {
  .hero-stats {
    position: absolute;
    bottom: clamp(11rem, 25vh, 16rem);
    right: 8%;
    margin-top: 0;
    justify-content: flex-end;
  }
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  font-weight: 400;
  margin-top: 0.1rem;
}

/* hero right image placeholder */
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.2s ease both;
  z-index: 2;
}

.hero-card {
  background: rgba(7, 24, 50, 0.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-name {
  font-weight: 700;
  font-size: 1rem;
}

.card-title {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.card-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--white-dim);
}

.card-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS WRAPPER ===== */
section {
  padding: 6rem 6%;
}

/* ===== ABOUT (LIGHT) ===== */
#about {
  background: var(--light-bg);
  position: relative;
}

#about .section-label {
  color: var(--gold-dim);
}

#about .section-title {
  color: var(--dark-text);
}

#about .divider {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-inner {
  border: 1px solid var(--light-border);
  border-radius: 20px;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 42, 82, 0.15);
  background: transparent;
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 16px;
  padding: 1rem 1.25rem;
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.about-float-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.about-float-badge small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.about-text p {
  color: var(--dark-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--light-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.pillar-icon {
  font-size: 1.4rem;
}

.pillar-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--dark-muted);
  margin-top: 0.1rem;
}

/* ===== ROLES ===== */
#roles {
  background: var(--dark-blue);
}

.roles-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.roles-header .divider {
  margin-left: auto;
  margin-right: auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.role-card {
  background: rgba(5, 8, 16, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.role-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.role-card:hover::before {
  opacity: 1;
}

.role-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.role-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.role-desc {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.role-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== BENEFITS (LIGHT) ===== */
#benefits {
  background: var(--light-bg);
}

#benefits .section-label {
  color: var(--gold-dim);
}

#benefits .section-title {
  color: var(--dark-text);
}

#benefits .divider {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--light-card);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.benefit-item:hover {
  border-color: var(--light-border);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.12);
}

.benefit-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  min-width: 2rem;
  line-height: 1;
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark-text);
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--dark-muted);
  line-height: 1.6;
}

.benefits-cta-card {
  background: linear-gradient(135deg, rgba(7, 24, 50, 0.9), rgba(13, 42, 82, 0.7));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 8rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-card-text {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
}

.cta-checklist li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.cta-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(5, 8, 16, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-input::placeholder {
  color: rgba(245, 245, 245, 0.3);
}

.cta-input:focus {
  border-color: var(--gold);
}

.file-input {
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.file-input::file-selector-button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.file-input:hover::file-selector-button {
  background: var(--gold-light);
  transform: scale(1.02);
}

/* ===== TIMELINE ===== */
#journey {
  background: var(--black);
}

.journey-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.journey-header .divider {
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-item {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px var(--gold-dim);
}

.timeline-body {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.25rem 0 0.4rem;
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-blue);
  border-top: 1px solid var(--border);
  padding: 3rem 6% 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--white-dim);
}

.footer-text a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-visual {
    display: none;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }

  .logo-img {
    height: 45px;
  }

  #hero {
    padding: 90px 6% 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   CHAIRMAN'S VISION SECTION
   ======================================== */

#chairman {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: var(--light-bg);
}

/* Dot-matrix texture overlay */
#chairman::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal shimmer bands */
#chairman::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 30%, rgba(201, 168, 76, 0.06) 31%, rgba(201, 168, 76, 0.06) 32%, transparent 33%),
    linear-gradient(125deg, transparent 58%, rgba(201, 168, 76, 0.04) 59%, rgba(201, 168, 76, 0.04) 60%, transparent 61%);
  pointer-events: none;
  z-index: 0;
}

/* Top vertical line drop */
.ch-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 1;
}

/* ---- floating particles ---- */
.ch-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ch-p {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
}

.ch-p1 {
  width: 3px;
  height: 3px;
  left: 8%;
  animation: chFloat 9s 2s linear infinite;
}

.ch-p2 {
  width: 4px;
  height: 4px;
  left: 22%;
  animation: chFloat 13s 0s linear infinite;
}

.ch-p3 {
  width: 2px;
  height: 2px;
  left: 41%;
  animation: chFloat 11s 5s linear infinite;
}

.ch-p4 {
  width: 5px;
  height: 5px;
  left: 63%;
  animation: chFloat 8s 1s linear infinite;
}

.ch-p5 {
  width: 3px;
  height: 3px;
  left: 78%;
  animation: chFloat 14s 3s linear infinite;
}

.ch-p6 {
  width: 2px;
  height: 2px;
  left: 91%;
  animation: chFloat 10s 7s linear infinite;
}

@keyframes chFloat {
  0% {
    top: 105%;
    opacity: 0;
  }

  8% {
    opacity: 0.55;
  }

  92% {
    opacity: 0.25;
  }

  100% {
    top: -5%;
    opacity: 0;
  }
}

/* ---- inner content wrapper ---- */
.ch-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ---- eyebrow label ---- */
.ch-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.ch-eyebrow-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---- two-column layout ---- */
.ch-layout {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 5rem;
  align-items: center;
}

/* ---- LEFT: quote content ---- */
.ch-content {
  position: relative;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1f3d 60%, var(--mid-blue) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow:
    0 20px 60px rgba(13, 42, 82, 0.25),
    0 4px 16px rgba(13, 42, 82, 0.12),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

/* subtle top-right glow inside the card */
.ch-content::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.ch-quote-decoration {
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.ch-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin: 0;
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

.ch-quote em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 800;
}

/* tail of the quote bar */
.ch-quote-tail {
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-left: 2rem;
}

/* secondary / supporting statement */
.ch-sub-statement {
  margin: 1.5rem 0 0 2rem;
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.75;
  font-style: italic;
  max-width: 520px;
}

/* divider */
.ch-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2.5rem 0 2.25rem 2rem;
}

/* attribution block */
.ch-attribution {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-left: 2rem;
  padding-top: 0.5rem;
}

/* gold monogram circle */
.ch-monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.07);
}

.ch-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.ch-title {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.6);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* credential chips */
.ch-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ch-cred {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.7);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: default;
}

.ch-cred:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.ch-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* mobile identity panel — hidden by default, only shows on mobile */
.ch-mobile-identity {
  display: none;
}

.ch-portrait-wrap {
  position: relative;
}

/* ambient glow behind the portrait */
.ch-portrait-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.13) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  animation: chGlowPulse 4s ease-in-out infinite;
}

@keyframes chGlowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

/* the outer frame container */
.ch-portrait-frame {
  position: relative;
  border-radius: 20px;
}

/* four decorative gold corners */
.ch-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 5;
  opacity: 0.9;
}

.ch-corner-tl {
  top: -10px;
  left: -10px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.ch-corner-tr {
  top: -10px;
  right: -10px;
  border-width: 2px 2px 0 0;
  border-radius: 0 4px 0 0;
}

.ch-corner-bl {
  bottom: -10px;
  left: -10px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 4px;
}

.ch-corner-br {
  bottom: -10px;
  right: -10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

/* portrait image / placeholder */
.ch-portrait-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 25px 60px rgba(13, 42, 82, 0.15),
    inset 0 1px 0 rgba(201, 168, 76, 0.12);
}

.ch-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* SVG silhouette placeholder */
.ch-portrait-silhouette {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
}

.ch-portrait-silhouette svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* subtle text overlay */
.ch-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(5, 8, 16, 0.85), transparent);
  text-align: center;
}

.ch-portrait-hint {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

/* est. badge bottom-left */
.ch-portrait-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 12px;
  padding: 0.7rem 1rem;
  color: var(--black);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
  z-index: 6;
  text-align: center;
}

.ch-badge-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.ch-badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.ch-badge-uni {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-top: 1px;
}

/* award ribbon */
.ch-award-ribbon {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: background 0.3s, border-color 0.3s;
}

.ch-award-ribbon:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
}

.ch-award-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ch-award-text {
  font-size: 0.78rem;
  color: var(--dark-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ---- bottom accolades bar ---- */
.ch-accolades {
  display: flex;
  align-items: center;
  margin-top: 5.5rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 18px;
  overflow: hidden;
  background: var(--light-card);
  box-shadow: 0 4px 24px rgba(13, 42, 82, 0.08);
}

.ch-accolade {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2.25rem;
  flex: 1;
  justify-content: center;
  transition: background 0.3s;
}

.ch-accolade:hover {
  background: rgba(201, 168, 76, 0.06);
}

.ch-accolade-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.ch-accolade-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.15rem;
}

.ch-accolade-sub {
  font-size: 0.72rem;
  color: var(--dark-muted);
  line-height: 1.4;
}

.ch-accolade-sep {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

/* ---- Chairman section responsiveness ---- */
@media (max-width: 1060px) {
  .ch-layout {
    grid-template-columns: 1fr 300px;
    gap: 3rem;
  }

  .ch-quote-decoration {
    font-size: 14rem;
  }
}

@media (max-width: 820px) {
  #chairman {
    padding: 5rem 0 4rem;
  }

  .ch-eyebrow {
    margin-bottom: 2.5rem;
  }

  .ch-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Portrait: move to top as a compact horizontal identity card */
  .ch-portrait-wrap {
    order: -1;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1f3d 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
  }

  .ch-portrait-glow {
    display: none;
  }

  .ch-portrait-frame {
    flex-shrink: 0;
    width: 140px;
  }

  .ch-portrait-img {
    border-radius: 12px;
  }

  .ch-portrait-silhouette {
    aspect-ratio: 1 / 1;
  }

  .ch-portrait-badge {
    display: none;
  }

  /* Show mobile identity panel next to portrait, hide desktop versions */
  .ch-mobile-identity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
  }

  .ch-mobile-identity .ch-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0;
    line-height: 1.2;
  }

  .ch-mobile-identity .ch-title {
    font-size: 0.65rem;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .ch-mobile-identity .ch-credentials {
    flex-direction: column;
    gap: 0.25rem;
  }

  .ch-mobile-identity .ch-cred {
    font-size: 0.58rem;
    padding: 0.15rem 0.5rem;
  }

  /* Hide desktop attribution & divider from inside the blue card */
  .ch-content .ch-attribution {
    display: none;
  }

  .ch-content .ch-divider {
    display: none;
  }

  /* Hide award ribbon on mobile (identity panel replaces it) */
  .ch-award-ribbon {
    display: none !important;
  }

  /* Quote card: full width, tighter padding */
  .ch-content {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 18px;
  }

  .ch-quote-decoration {
    font-size: 9rem;
    top: -0.75rem;
    left: -0.5rem;
  }

  .ch-quote {
    padding: 1.25rem 0 1.25rem 1.35rem;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .ch-quote-tail {
    margin-left: 1.35rem;
  }

  .ch-sub-statement {
    margin-left: 1.35rem;
    font-size: 0.85rem;
  }

  .ch-divider {
    margin: 1.75rem 0 1.5rem 1.35rem;
    width: 70px;
  }

  .ch-attribution {
    padding-left: 1.35rem;
    gap: 1rem;
  }

  .ch-monogram {
    width: 46px;
    height: 46px;
    font-size: 0.65rem;
    box-shadow: none;
  }

  .ch-name {
    font-size: 1.2rem;
  }

  .ch-credentials {
    gap: 0.35rem;
  }

  .ch-cred {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
  }

  /* Accolades: 2x2 grid */
  .ch-accolades {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
    border-radius: 16px;
  }

  .ch-accolade {
    padding: 1.1rem 1rem;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .ch-accolade:nth-child(1),
  .ch-accolade:nth-child(2) {
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .ch-accolade:nth-child(1),
  .ch-accolade:nth-child(3) {
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }

  .ch-accolade-sep {
    display: none;
  }

  .ch-accolade-num {
    font-size: 1.5rem;
  }

  .ch-accolade-label {
    font-size: 0.78rem;
  }

  .ch-accolade-sub {
    font-size: 0.65rem;
  }
}

@media (max-width: 500px) {
  #chairman {
    padding: 4rem 0 3rem;
  }

  .ch-inner {
    padding: 0 5%;
  }

  .ch-eyebrow {
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }

  .ch-eyebrow-rule {
    width: 22px;
  }

  .ch-portrait-frame {
    width: 110px;
  }

  .ch-quote {
    font-size: 0.95rem;
  }

  .ch-name {
    font-size: 1.05rem;
  }

  .ch-credentials {
    flex-direction: column;
    gap: 0.25rem;
  }

  .ch-award-text {
    font-size: 0.7rem;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease-out;
  will-change: opacity;
}

.reveal-fade.visible {
  opacity: 1;
}

.delay-0 {
  transition-delay: 0ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* ===== PREMIUM NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  min-width: 250px;
  max-width: 350px;
  background: rgba(7, 24, 50, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  pointer-events: all;
  opacity: 0;
  transform: translateX(50px);
}

.toast.removing {
  animation: toastSlideOut 0.4s ease forwards;
}

.toast-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.toast-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toast-message {
  font-size: 0.8rem;
  color: var(--white);
  line-height: 1.4;
  font-weight: 400;
}

.toast-close {
  margin-left: auto;
  cursor: pointer;
  color: var(--white-dim);
  transition: color 0.2s;
  padding: 4px;
}

.toast-close:hover {
  color: var(--gold);
}

.toast.error {
  border-left-color: #ff4757;
}

.toast.error .toast-title {
  color: #ff4757;
}

.toast.error .toast-icon {
  background: rgba(255, 71, 87, 0.1);
}

@keyframes toastSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}

@media (max-width: 480px) {
  .toast-container {
    right: 1rem;
    left: 1rem;
    top: 20px;
  }

  .toast {
    min-width: 0;
  }

  .logo-text {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    margin-top: 1px;
  }

  .logo-img {
    height: 38px;
  }

  nav {
    padding: 0.8rem 4%;
  }

  #hero {
    padding: 80px 4% 2.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
    justify-content: space-between;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }
}

/* ========================================
   HR LEADERSHIP SECTION
   ======================================== */
.hr-section {
  background: var(--light-bg);
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}

.hr-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* Header */
.hr-header {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 5rem;
}

.hr-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  padding-top: 1rem;
}

.hr-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hr-header-main {
  max-width: 600px;
}

.hr-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hr-heading em {
  font-style: italic;
  color: var(--gold-dim);
}

.hr-subtitle {
  font-size: 1rem;
  color: var(--dark-muted);
  line-height: 1.65;
}

/* Grid & Cards */
.hr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.hr-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hr-card:hover .hr-img-frame img {
  transform: scale(1.05);
}

.hr-img-box {
  width: 100%;
  max-width: 160px;
  position: relative;
  border-radius: 12px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 10px 25px rgba(13, 42, 82, 0.06);
  transition: transform 0.4s ease;
  margin-bottom: 2rem;
}

/* Internal frame for the image */
.hr-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
}

.hr-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
  background-color: var(--light-bg);
}

/* Name & Title Block */
.hr-info {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  margin-left: 0.25rem;
}

.hr-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.hr-card-title {
  font-size: 0.75rem;
  color: var(--dark-muted);
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Response */
@media (max-width: 900px) {
  .hr-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .hr-header-left {
    padding-top: 0;
  }

  .hr-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hr-section {
    padding: 5rem 5%;
  }

  .hr-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hr-img-box {
    padding: 10px;
    margin-bottom: 1.5rem;
  }
}