/* =================================================================
   AI CONSULTATION — ABOUT / CONSULTANT PAGES STYLESHEET
   Dark Navy · Gold · Premium
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --bg-primary:    #050810;
  --bg-secondary:  #09101a;
  --bg-glass:      #0d1829;
  --gold:          #c9a84c;
  --gold-light:    #e4c76b;
  --gold-hover:    #f5df96;
  --gold-dim:      rgba(201,168,76,0.18);
  --gold-muted:    rgba(201,168,76,0.08);
  --text-white:    #f4efe6;
  --text-ivory:    #ede8dd;
  --text-secondary:#a8b5c4;
  --text-muted:    #5e6e7e;
  --border-gold:   rgba(201,168,76,0.20);
  --border-gold-strong: rgba(201,168,76,0.45);
  --divider:       rgba(255,255,255,0.05);
  --glass-bg:      rgba(10,18,34,0.75);
  --glass-border:  rgba(255,255,255,0.07);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Segoe UI', Arial, sans-serif;
  --ease:          cubic-bezier(.22,1,.36,1);
  --container:     1260px;
  --radius-lg:     24px;
  --radius-md:     16px;
  --radius-sm:     10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: var(--font-body); cursor: pointer; background: none; border: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-heading); margin: 0; font-weight: 700; line-height: 1.15; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5,8,16,0.6);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(5,8,16,0.85);
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 36px -18px rgba(0,0,0,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #b8952a 0%, #e4c76b 50%, #f5df96 100%);
  color: #0a0700;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-ivory);
}
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
  font-weight: 500;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width .4s var(--ease);
}
.main-nav a:hover { color: var(--text-ivory); }
.main-nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #a87c28 0%, #d9b44a 40%, #f2d878 65%, #c49830 100%);
  background-size: 220% auto;
  color: #0a0700;
  box-shadow: 0 8px 28px -10px rgba(201,168,76,.65);
  border: 1px solid rgba(201,168,76,0.5);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 38px -14px rgba(201,168,76,.8);
  background-position: right center;
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-ivory);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--border-gold-strong);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text-ivory);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(5,8,16,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 48px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav a { font-size: 22px; font-family: var(--font-heading); color: var(--text-ivory); }

/* =====================================================================
   ABOUT HERO
   ===================================================================== */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--bg-secondary);
}

/* Aurora layer */
.about-aurora-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-aurora-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.about-aurora-blob-1 {
  width: 900px; height: 700px;
  top: -40%; left: -20%;
  background: radial-gradient(ellipse at center,
    rgba(30, 60, 180, 0.45) 0%,
    rgba(20, 40, 140, 0.25) 40%,
    transparent 75%);
  filter: blur(80px);
  animation: aboutAurora1 18s ease-in-out infinite;
}
.about-aurora-blob-2 {
  width: 700px; height: 600px;
  top: -30%; right: -10%;
  background: radial-gradient(ellipse at center,
    rgba(80, 30, 180, 0.35) 0%,
    rgba(50, 15, 140, 0.18) 45%,
    transparent 80%);
  filter: blur(90px);
  animation: aboutAurora2 24s ease-in-out infinite 4s;
}
.about-aurora-blob-3 {
  width: 500px; height: 400px;
  bottom: -10%; right: 20%;
  background: radial-gradient(ellipse at center,
    rgba(201, 168, 76, 0.20) 0%,
    rgba(180, 140, 50, 0.08) 50%,
    transparent 80%);
  filter: blur(80px);
  animation: aboutAurora1 30s ease-in-out infinite 8s;
}
@keyframes aboutAurora1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(40px, 30px) scale(1.07); }
}
@keyframes aboutAurora2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(-50px, 40px) scale(1.05); }
}

/* Grid overlay */
.about-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;
  pointer-events: none; z-index: 1;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 10%, transparent 80%);
}

/* Bottom gold line */
.about-hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5) 30%, rgba(201,168,76,0.5) 70%, transparent);
  z-index: 10;
}

.about-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 60px;
  padding: 140px 0 0;
}

.about-hero-content {
  padding-bottom: 60px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 24px;
}
.about-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(228,199,107,0.9);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 6px rgba(228,199,107,0.7); }
  50%     { box-shadow: 0 0 18px rgba(228,199,107,1); }
}

.about-hero-title {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--text-ivory);
  margin-bottom: 20px;
}
.about-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #c9a84c 0%, #f5df96 40%, #e4c76b 70%, #a87c28 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText {
  0%  { background-position: 0% center; }
  100%{ background-position: 200% center; }
}

.about-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.about-hero-meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.about-hero-meta-sep {
  width: 1px; height: 16px;
  background: var(--divider);
}

/* Consultant portrait container in hero */
.about-hero-portrait-wrap {
  position: relative;
  align-self: flex-end;
  flex-shrink: 0;
}
.about-hero-portrait {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 -20px 60px rgba(30,60,180,0.3));
}
.about-portrait-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
}
.about-portrait-ring {
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 360px; height: 100px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  z-index: 0;
}

/* =====================================================================
   ABOUT BODY — SIDEBAR + CONTENT LAYOUT
   ===================================================================== */
.about-body {
  background: #f8f7f4;
  min-height: 60vh;
}

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Sidebar */
.about-sidebar {
  padding: 56px 40px 56px 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 80px;
  align-self: start;
}
.about-sidebar-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.about-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-sidebar-link {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all .25s ease;
  border-left: 2px solid transparent;
}
.about-sidebar-link:hover {
  color: #111;
  background: rgba(0,0,0,0.04);
  border-left-color: var(--gold);
}
.about-sidebar-link.active {
  color: #111;
  background: rgba(201,168,76,0.08);
  border-left-color: var(--gold);
  font-weight: 600;
}

/* Sidebar CTA card */
.sidebar-cta-card {
  margin-top: 40px;
  padding: 24px;
  background: #111827;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.25);
}
.sidebar-cta-card p {
  font-size: 13px;
  color: #a8b5c4;
  margin-bottom: 16px;
  line-height: 1.65;
  font-family: var(--font-body);
}
.sidebar-cta-card .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 11px;
}

/* Main content */
.about-main {
  padding: 56px 0 80px 56px;
}

/* Section */
.about-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.about-section:last-child {
  border-bottom: none;
}
.about-section-num {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.about-section-title {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #111;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}
.about-section-body {
  color: #444;
  font-size: 15px;
  line-height: 1.85;
  font-family: var(--font-body);
}
.about-section-body p + p { margin-top: 16px; }
.about-section-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
}
.about-section-body a:hover {
  color: #a87c28;
}

/* Highlight quote */
.about-quote {
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(5,8,16,0.96), rgba(9,16,26,0.98));
  border-radius: 16px;
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 20px;
  font-size: 120px;
  color: rgba(201,168,76,0.08);
  font-family: var(--font-heading);
  line-height: 1;
}
.about-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-ivory);
  font-family: var(--font-heading);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.about-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

/* Expertise tags */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.expertise-tag {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #222;
  font-family: var(--font-body);
  transition: all .25s ease;
}
.expertise-tag:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.5);
}

/* Achievements list */
.achievements-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.achievement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.achievement-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b8952a 0%, #e4c76b 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.achievement-icon svg {
  width: 18px; height: 18px;
  stroke: #0a0700;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.achievement-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.achievement-text span {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  font-family: var(--font-body);
}

/* Stats row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.about-stat-card {
  padding: 24px 20px;
  background: linear-gradient(135deg, #050810, #09101a);
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.18);
  text-align: center;
}
.about-stat-num {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: var(--font-body);
}

/* CTA section */
.about-cta-section {
  background: linear-gradient(135deg, #050810, #09101a);
  padding: 64px 0;
}
.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.about-cta-inner h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text-ivory);
  margin-bottom: 16px;
}
.about-cta-inner p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.75;
  font-family: var(--font-body);
}
.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg { padding: 16px 40px; font-size: 12px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.about-footer {
  background: #050810;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 28px 0;
}
.about-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.about-footer-inner p {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.about-footer-links {
  display: flex;
  gap: 20px;
}
.about-footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color .25s ease;
}
.about-footer-links a:hover { color: var(--gold-light); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="fade-up"] { transform: translateY(28px); }
[data-reveal="fade-down"] { transform: translateY(-20px); }
[data-reveal="fade-left"] { transform: translateX(-28px); }
[data-reveal="fade-right"] { transform: translateX(28px); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal] { transition-delay: var(--reveal-delay, 0s); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .about-hero-portrait { width: 260px; height: 330px; }
  .about-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  .main-nav,
  .header-inner > .btn-gold { display: none; }
  .menu-toggle { display: flex; }

  .site-header { padding: 14px 0; }
  .header-inner { gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .about-hero {
    min-height: auto;
  }
  .about-hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 120px 0 0;
    text-align: center;
    gap: 32px;
  }
  .about-hero-content { padding-bottom: 0; }
  .about-hero-portrait-wrap { margin: 0 auto; }
  .about-hero-portrait {
    width: 220px;
    height: 280px;
    border-radius: 18px 18px 0 0;
  }
  .about-portrait-ring { width: 280px; }
  .about-hero-meta {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .about-hero-meta-sep {
    width: 60px;
    height: 1px;
  }
  .about-eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .about-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 36px 0 28px;
  }
  .about-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .about-sidebar-link {
    padding: 8px 14px;
    border-left: none;
    border-radius: 999px;
    font-size: 13px;
  }
  .about-main { padding: 40px 0 60px; }
  .about-section { padding-bottom: 40px; margin-bottom: 40px; }
  .about-section-body { font-size: 14px; }
  .about-quote { padding: 22px 20px; margin: 24px 0; }

  .achievements-list { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr; gap: 12px; }

  .about-aurora-blob-1 { width: 560px; height: 440px; }
  .about-aurora-blob-2 { width: 480px; height: 400px; }
  .about-aurora-blob-3 { width: 400px; height: 360px; }

  .about-cta-section { padding: 56px 0; }
  .about-cta-inner { padding: 0 20px; }
  .about-footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .about-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-layout { padding: 0 16px; }

  .about-hero-inner { padding-top: 108px; }
  .about-hero-title { font-size: clamp(28px, 9vw, 38px); }
  .about-hero-portrait { width: 200px; height: 255px; }
  .about-portrait-ring { width: 240px; }

  .about-sidebar-nav { flex-direction: column; }
  .about-sidebar-link { width: 100%; border-radius: 8px; }
  .about-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta-btns .btn { width: 100%; justify-content: center; }
  .sidebar-cta-card { margin-top: 28px; }
  .achievement-item { padding: 16px; }
}
