/* AI4WOMEN — Elegant Design */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Spacing */
  --space-1: 6px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;

  --wine: #5a2d3d;
  --wine-deep: #3a1c28;
  --wine-light: #7a4a5a;
  --gold: #c4a265;
  --gold-light: #dcc28a;
  --gold-muted: #a88c50;
  --cream: #fdfcfa;
  --cream-warm: #f8f5f0;
  --ink: #2a2a2a;
  --ink-light: #454545;
  --ink-muted: #7a7a7a;
  --white: #ffffff;

  /* Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 6px rgba(90, 45, 61, 0.06);
  --shadow-md: 0 4px 16px rgba(90, 45, 61, 0.08);
  --shadow-hover: 0 8px 28px rgba(90, 45, 61, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================
   BASE
   ======================================== */

.v2 body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream);
}

/* ========================================
   NAV + HERO
   ======================================== */

.v2 .p2-nav-hero {
  background: linear-gradient(165deg, var(--wine) 0%, var(--wine-deep) 60%, #2a1018 100%);
  position: relative;
  overflow: hidden;
}

.v2 .p2-nav-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(196, 162, 101, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(196, 162, 101, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.v2 .p2-nav-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196, 162, 101, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(196, 162, 101, 0.04) 0%, transparent 20%);
  pointer-events: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.v2 .p2-nav {
  position: relative;
  z-index: 10;
  padding: 24px 40px;
}

.v2 .p2-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1000px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.2), rgba(196, 162, 101, 0.3), rgba(196, 162, 101, 0.2), transparent);
}

.v2 .p2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
}

.v2 .p2-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2 .p2-nav-brand .p2-logo-link {
  display: flex;
  align-items: center;
  padding: 5px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.v2 .p2-nav-brand .p2-logo-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 162, 101, 0.2);
}

.v2 .p2-nav-brand .p2-logo-link img {
  height: 26px;
  width: auto;
}

.v2 .p2-nav-logo-sep {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent 10%, rgba(196, 162, 101, 0.3) 50%, transparent 90%);
}

.v2 .p2-partner-logo-link {
  display: flex;
  align-items: center;
  padding: 5px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.v2 .p2-partner-logo-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 162, 101, 0.2);
}

.v2 .p2-partner-logo-img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

.v2 .p2-nav-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Nav Links */
.v2 .p2-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.v2 .p2-nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.v2 .p2-nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.v2 .p2-nav-links a:hover {
  color: var(--gold-light);
}

.v2 .p2-nav-links a:hover::before {
  opacity: 1;
}

.v2 .p2-nav-social {
  display: flex;
  gap: 18px;
}

.v2 .p2-nav-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  transition: all 0.3s ease;
  padding: 6px;
  border-radius: 50%;
}

.v2 .p2-nav-social a:hover {
  color: var(--gold-light);
  background: rgba(196, 162, 101, 0.15);
  transform: translateY(-2px);
}

/* ========================================
   HERO
   ======================================== */

.v2 .p2-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 56px 32px 72px;
}

.v2 .p2-hero-bg {
  display: none;
}

.v2 .p2-hero-content {
  max-width: 680px;
  position: relative;
}

.v2 .p2-hero-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v2 .p2-hero-label::before,
.v2 .p2-hero-label::after {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.v2 .p2-hero h1 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  line-height: 1.1;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
}

.v2 .p2-hero-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

.v2 .p2-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* ========================================
   MAIN
   ======================================== */

.v2 .p2-main {
  background: var(--cream);
}

/* ========================================
   SECTION
   ======================================== */

.v2 .p2-section {
  padding: 48px 32px;
  max-width: 920px;
  margin: 0 auto;
}

.v2 .p2-section+.p2-section {
  padding-top: 20px;
}

.v2 .p2-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 12px;
}

.v2 .p2-section-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.v2 .p2-section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--wine);
  margin: 0;
  position: relative;
}

.v2 .p2-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ========================================
   MISSION
   ======================================== */

.v2 .p2-mission-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 24px;
  padding: 0;
}

.v2 .p2-mission-accent {
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-muted) 100%);
  border-radius: 2px;
}

.v2 .p2-mission {
  position: relative;
}

.v2 .p2-mission p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-light);
  margin: 0;
  text-align: left;
  text-indent: 2em;
}

/* ========================================
   TEAM
   ======================================== */

.v2 .p2-team-group {
  margin-bottom: 48px;
}

.v2 .p2-team-group:last-child {
  margin-bottom: 0;
}

.v2 .p2-team-group-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2 .p2-team-group-title::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
}

.v2 .p2-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(14px, 2.5vw, 24px);
}

@media (min-width: 1000px) {
  .v2 .p2-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .v2 .p2-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 480px) and (max-width: 699px) {
  .v2 .p2-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.v2 .p2-person {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  border: 1px solid rgba(90, 45, 61, 0.05);
  box-shadow: 0 2px 12px rgba(90, 45, 61, 0.05);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.v2 .p2-person::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 0 0 3px 3px;
  transition: width 0.35s ease;
}

.v2 .p2-person:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(90, 45, 61, 0.1);
  border-color: rgba(196, 162, 101, 0.12);
}

.v2 .p2-person:hover::before {
  width: 50px;
}

.v2 .p2-person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-warm), #e8e2d6);
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(90, 45, 61, 0.1);
  transition: all 0.35s ease;
}

.v2 .p2-person:hover .p2-person-avatar {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(90, 45, 61, 0.14);
}

.v2 .p2-person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2 .p2-person-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.v2 .p2-person-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.v2 .p2-person-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.v2 .p2-person-name a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.v2 .p2-person:hover .p2-person-name a {
  color: var(--wine);
}

.v2 .p2-person-dept {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.45;
  max-width: 90%;
}

.v2 .p2-person-role {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
  box-shadow: 0 2px 6px rgba(196, 162, 101, 0.25);
}

.v2 .p2-person-link {
  margin-top: 10px;
  font-size: 11px;
}

.v2 .p2-person-link a {
  color: var(--gold-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.v2 .p2-person-link a:hover {
  color: var(--wine);
}

/* ========================================
   Leading PI
   ======================================== */

.v2 .p2-team-group:first-child .p2-person {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
  border-color: rgba(196, 162, 101, 0.1);
  padding: 28px 24px 24px;
}

.v2 .p2-team-group:first-child .p2-person::before {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.v2 .p2-team-group:first-child .p2-person-avatar {
  width: 100px;
  height: 100px;
  border-width: 4px;
  box-shadow: 0 6px 24px rgba(90, 45, 61, 0.12);
}

.v2 .p2-team-group:first-child .p2-person-name {
  font-size: 19px;
}

.v2 .p2-team-group:first-child .p2-person-dept {
  font-size: 12px;
}

.v2 .p2-team-group:first-child .p2-person-role {
  font-size: 10px;
  padding: 5px 16px;
  box-shadow: 0 3px 10px rgba(196, 162, 101, 0.3);
}

/* ========================================
   Leadership Advisory
   ======================================== */

.v2 .p2-team-group:last-child .p2-person-role {
  background: linear-gradient(135deg, var(--wine-light), var(--wine));
}

/* ========================================
   VISUAL
   ======================================== */

.v2 .p2-visual {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(90, 45, 61, 0.08);
  text-align: center;
}

.v2 .p2-visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(90, 45, 61, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.v2 .p2-visual-img:hover {
  transform: scale(1.015);
  box-shadow: 0 10px 32px rgba(90, 45, 61, 0.14);
}

.v2 .p2-visual-caption {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 16px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v2 .p2-visual-caption::before,
.v2 .p2-visual-caption::after {
  content: '';
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted));
}

.v2 .p2-visual-caption::after {
  background: linear-gradient(90deg, var(--gold-muted), transparent);
}

/* ========================================
   PAGE COUNTER
   ======================================== */

.v2 #page-counter {
  background: var(--cream);
  padding: 0 32px 24px;
  text-align: center;
}

.v2 #page-counter .fancy-counter-container {
  margin: 0;
  font-family: var(--font-body);
  display: inline-flex;
  justify-content: center;
}

.v2 #page-counter .fancy-counter {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v2 #page-counter .fancy-counter-icon {
  color: var(--gold-muted) !important;
  font-size: 14px;
}

.v2 #page-counter .fancy-counter-icon::after {
  display: none !important;
}

.v2 #page-counter .fancy-counter-text {
  color: var(--ink-muted) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.v2 #page-counter .fancy-counter-number {
  color: var(--wine) !important;
  background: none !important;
  -webkit-text-fill-color: var(--wine) !important;
  font-weight: 600;
  font-size: 14px;
}

.v2 #page-counter .fancy-counter-loading {
  border-color: rgba(196, 162, 101, 0.2);
  border-top-color: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */

.v2 .p2-footer {
  padding: 32px 32px 28px;
  background: linear-gradient(180deg, var(--wine-deep) 0%, #2a1a20 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.v2 .p2-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 2px 2px;
}

.v2 .p2-footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.v2 .p2-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.v2 .p2-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2 .p2-footer-brand .p2-logo-link {
  display: flex;
  align-items: center;
  padding: 5px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.v2 .p2-footer-brand .p2-logo-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 162, 101, 0.2);
}

.v2 .p2-footer-brand .p2-logo-link img {
  height: 22px;
  width: auto;
}

.v2 .p2-footer-logo-sep {
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(196, 162, 101, 0.3), transparent);
}

.v2 .p2-footer-brand .p2-partner-logo-link {
  display: flex;
  align-items: center;
  padding: 5px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.v2 .p2-footer-brand .p2-partner-logo-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 162, 101, 0.2);
}

.v2 .p2-footer-brand .p2-partner-logo-img {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.v2 .p2-footer-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.v2 .p2-footer-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  text-align: right;
}

.v2 .p2-footer-meta .label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.v2 .p2-footer-meta .label::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold-muted);
  opacity: 0.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 800px) {
  .v2 .p2-nav {
    padding: 18px 24px;
  }

  .v2 .p2-nav::after {
    width: 85%;
  }

  .v2 .p2-nav-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .v2 .p2-nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
  }

  .v2 .p2-hero h1 {
    font-size: 44px;
  }

  .v2 .p2-hero-tagline {
    font-size: 17px;
  }
}

@media (max-width: 580px) {

  .v2 .p2-nav {
    padding: 12px 16px;
  }

  .v2 .p2-nav-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .v2 .p2-nav-brand {
    gap: 8px;
  }

  .v2 .p2-nav-brand .p2-logo-link {
    padding: 4px 5px;
  }

  .v2 .p2-nav-brand .p2-logo-link img {
    height: 22px;
  }

  .v2 .p2-partner-logo-link {
    padding: 4px 5px;
  }

  .v2 .p2-partner-logo-img {
    height: 22px;
    max-width: 70px;
  }

  .v2 .p2-nav-logo-sep {
    height: 16px;
  }

  .v2 .p2-nav-title {
    font-size: 14px;
  }

  .v2 .p2-nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .v2 .p2-nav-links a {
    font-size: 12px;
  }

  .v2 .p2-nav-social {
    gap: 12px;
  }

  .v2 .p2-nav-social a {
    font-size: 14px;
  }

  .v2 .p2-visual {
    margin-top: 16px;
    padding-top: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .v2 .p2-visual-caption {
    font-size: 11px;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .v2 #page-counter {
    padding: 4px 16px 14px;
    margin-top: 0;
  }

  .v2 #page-counter .fancy-counter {
    gap: 6px;
    padding: 6px 0;
  }

  .v2 #page-counter .fancy-counter-icon {
    font-size: 11px;
  }

  .v2 #page-counter .fancy-counter-text {
    font-size: 9px;
  }

  .v2 #page-counter .fancy-counter-number {
    font-size: 11px;
  }

  .v2 .p2-hero {
    min-height: 40vh;
    padding: 40px 20px 56px;
  }

  .v2 .p2-hero h1 {
    font-size: 36px;
  }

  .v2 .p2-hero-tagline {
    font-size: 15px;
  }

  .v2 .p2-hero-label::before,
  .v2 .p2-hero-label::after {
    width: 12px;
  }

  .v2 .p2-hero::after {
    height: 28px;
  }

  .v2 .p2-section {
    padding: 40px 20px;
  }

  .v2 .p2-section h2 {
    font-size: 24px;
  }

  .v2 .p2-mission-wrap {
    gap: 18px;
  }

  .v2 .p2-mission p {
    font-size: 15px;
    line-height: 1.8;
  }

  .v2 .p2-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .v2 .p2-footer-meta {
    text-align: center;
  }

  .v2 .p2-footer-meta .label {
    justify-content: center;
  }

  .v2 .p2-visual {
    margin-top: 20px;
    padding-top: 16px;
  }

  .v2 .p2-visual-img {
    border-radius: 8px;
  }

  .v2 .p2-visual-caption {
    font-size: 12px;
  }

  .v2 #page-counter {
    padding: 0 20px 20px;
  }

}

@media (max-width: 420px) {
  .v2 .p2-hero h1 {
    font-size: 28px;
  }

  .v2 .p2-hero-tagline {
    font-size: 13px;
  }

  .v2 .p2-team-group-title {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .v2 .p2-team-group-title::before {
    width: 16px;
  }

  .v2 .p2-visual {
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .v2 .p2-visual-img {
    border-radius: 6px;
  }

  .v2 .p2-visual-caption {
    font-size: 10px;
    margin-top: 6px;
    margin-bottom: 0;
  }

  .v2 .p2-visual-caption::before,
  .v2 .p2-visual-caption::after {
    width: 10px;
  }

  .v2 #page-counter {
    padding: 2px 12px 10px;
    margin-top: 0;
  }

  .v2 #page-counter .fancy-counter {
    gap: 5px;
    padding: 4px 0;
  }

  .v2 #page-counter .fancy-counter-text {
    font-size: 8px;
  }

  .v2 #page-counter .fancy-counter-number {
    font-size: 10px;
  }

  .v2 #page-counter .fancy-counter-icon {
    font-size: 10px;
  }

  .v2 .p2-footer {
    padding: 28px 20px 24px;
  }

  .v2 .p2-footer-brand .p2-logo-link img {
    height: 20px;
  }

  .v2 .p2-footer-brand .p2-partner-logo-img {
    height: 20px;
    max-width: 70px;
  }

  .v2 .p2-footer-title {
    font-size: 14px;
  }

  .v2 .p2-footer-meta {
    font-size: 11px;
  }
}

/* ========================================
   Mobile Card Styles
   ======================================== */
@media (max-width: 479px) {

  .v2 .p2-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .v2 .p2-person {
    min-height: auto;
    padding: 12px 10px 10px;
    border-radius: 10px;
    text-align: center;
  }

  .v2 .p2-person::before {
    height: 2px;
  }

  .v2 .p2-person:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .v2 .p2-person-avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto 6px;
    border: 2px solid var(--gold-light);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
  }

  .v2 .p2-person-info {
    text-align: center;
  }

  .v2 .p2-person-name {
    font-size: 9px;
    min-height: auto;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .v2 .p2-person-dept {
    font-size: 7px;
    margin-top: 2px;
    color: var(--ink-muted);
  }

  .v2 .p2-person-role {
    font-size: 5px;
    padding: 2px 6px;
    margin-top: 4px;
    letter-spacing: 0.03em;
  }

  .v2 .p2-team-group:first-child .p2-team-grid {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .v2 .p2-team-group:first-child .p2-person {
    min-height: auto;
    padding: 14px 12px 12px;
  }

  .v2 .p2-team-group:first-child .p2-person-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(196, 162, 101, 0.12);
  }

  .v2 .p2-team-group:first-child .p2-person-name {
    font-size: 11px;
  }

  .v2 .p2-team-group:first-child .p2-person-dept {
    font-size: 8px;
  }

  .v2 .p2-team-group:first-child .p2-person-role {
    font-size: 6px;
    padding: 2px 8px;
  }

  .v2 .p2-team-group-title {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .v2 .p2-team-group-title::before {
    width: 14px;
  }
}