/* ============================================================
   RVK Digital — about.css
   About page -specific styles only.
   Depends on global.css being loaded first.
   ============================================================ */




/* ── INTRO SPLIT ─────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.25rem;
}

.intro-text p {
  margin-bottom: 1rem;
}

.intro-text p:last-of-type {
  margin-bottom: 1.75rem;
}

/* Profile / visual panel */
.intro-panel {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.intro-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--dark-2);
}

.intro-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.09;
}

/* Avatar placeholder */
.avatar-wrap {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid rgba(245, 242, 239, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: rgba(245, 242, 239, 0.3);
}

.avatar-wrap svg {
  width: 32px;
  height: 32px;
}

.panel-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -0.025em;
  margin-bottom: 0.25rem;
}

.panel-role {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.panel-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245, 242, 239, 0.48);
  font-weight: 300;
}

.meta-row svg {
  width: 16px;
  height: 16px;
  stroke: rgba(245, 242, 239, 0.3);
  flex-shrink: 0;
}

.panel-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(245, 242, 239, 0.07);
  margin: 1.75rem 0;
}

.panel-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
}

.panel-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 242, 239, 0.45);
  border: 1px solid rgba(245, 242, 239, 0.09);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.875rem;
  transition: all var(--t-fast);
}

.panel-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.panel-link:hover {
  color: var(--light);
  border-color: rgba(245, 242, 239, 0.2);
}

/* ── APPROACH SECTION ────────────────────────────────── */
#approach {
  background: var(--surface);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.125rem;
}

.approach-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  transition: transform var(--t-fast), border-color var(--t-fast);
  position: relative;
  overflow: hidden;
}

.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.approach-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-md);
}

.approach-card:hover::after {
  transform: scaleX(1);
}

.ac-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--dark);
  transition: background var(--t-fast), color var(--t-fast);
}

.ac-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

[data-theme="dark"] .ac-icon {
  color: var(--accent);
}

.approach-card:hover .ac-icon {
  background: var(--accent);
  color: #fff;
}

[data-theme="dark"] .approach-card:hover .ac-icon {
  background: var(--accent);
  color: #fff;
}

.approach-card h3 {
  margin-bottom: 0.625rem;
}

.approach-card p {
  font-size: 0.9rem;
}

/* ── SKILLS SECTION ──────────────────────────────────── */
#skills {
  background: var(--bg);
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 5rem;
  align-items: start;
}

.skills-intro h2 {
  margin-bottom: 1rem;
}

.skills-intro p {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.skill-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.375rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.skill-item:hover {
  border-color: var(--border-md);
  transform: translateX(3px);
}

.skill-icon {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-2);
}

.skill-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

[data-theme="dark"] .skill-icon {
  color: var(--accent);
}

.skill-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-1);
}

/* ── VALUES SECTION ──────────────────────────────────── */
#values {
  background: var(--dark);
}

#values h2 {
  color: var(--light);
}

#values .section-intro {
  color: rgba(245, 242, 239, 0.45);
}

#values .eyebrow {
  color: var(--salmon-light);
}

#values .eyebrow::before {
  background: var(--salmon-light);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid rgba(245, 242, 239, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.value-entry {
  background: rgba(245, 242, 239, 0.02);
  padding: 2rem 2.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--t-fast);
}

.value-entry:hover {
  background: rgba(232, 133, 106, 0.06);
}

.ve-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 28px;
}

.ve-body h3 {
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 0.375rem;
}

.ve-body p {
  font-size: 0.875rem;
  color: rgba(245, 242, 239, 0.5);
  line-height: 1.7;
}

/* ── CTA ─────────────────────────────────────────────── */
#about-cta {
  background: var(--dark-2);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 133, 106, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

#about-cta .eyebrow {
  justify-content: center;
  color: var(--salmon-light);
}

#about-cta .eyebrow::before {
  background: var(--salmon-light);
}

#about-cta h2 {
  color: var(--light);
  max-width: 500px;
  margin: 0 auto 1.125rem;
  position: relative;
}

#about-cta p {
  color: rgba(245, 242, 239, 0.42);
  max-width: 400px;
  margin: 0 auto 2.25rem;
  font-size: 1rem;
  position: relative;
}

#about-cta .btn {
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .skills-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .panel-links {
    flex-direction: column;
  }
}