/* ─── Custom Properties ────────────────────────────────────── */
:root {
  --color-dark:        #2c1e0f;
  --color-accent:      #b5651d;
  --color-bg:          #f5f0eb;
  --color-bg-alt:      #e0d5c8;
  --color-mid:         #6b5040;
  --color-border:      #d4c9ba;
  --color-hero-text:   #f5f0eb;
  --color-hero-subtle: #a89880;
  --color-body-text:   #3d2a1a;
  --color-hero-rule:   #3d2a1a;
  --max-width:         760px;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Section Layout ────────────────────────────────────────── */
.section {
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--color-dark);
  color: var(--color-hero-text);
  padding: 72px 24px 64px;
  text-align: center;
}

.hero-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--color-hero-text);
}

.hero-title {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 12px;
}

.hero-location {
  font-size: 13px;
  color: var(--color-hero-subtle);
  margin-top: 8px;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--color-hero-rule);
  border-bottom: 1px solid var(--color-hero-rule);
  margin: 36px auto;
  max-width: 500px;
}

.stat {
  padding: 22px 16px;
  text-align: center;
}

.stat:not(:last-child) {
  border-right: 1px solid var(--color-hero-rule);
}

.stat-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-hero-subtle);
  margin-top: 6px;
}

/* ─── Hero Tagline ──────────────────────────────────────────── */
.hero-tagline {
  font-size: 14px;
  color: var(--color-hero-subtle);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-style: italic;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.btn:hover {
  opacity: 0.82;
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-hero-text);
}

/* ─── About ─────────────────────────────────────────────────── */
.about-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-body-text);
}

/* ─── Core Competencies ─────────────────────────────────────── */
.competencies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--color-dark);
  color: var(--color-hero-text);
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 3px;
  line-height: 1.4;
}

.tag:hover {
  opacity: 0.85;
}

/* ─── Career Highlights ─────────────────────────────────────── */
.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlights-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body-text);
}

.highlights-list li::before {
  content: "—";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Licenses & Certifications ─────────────────────────────── */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 3px;
  font-weight: 500;
  line-height: 1.4;
}

.cert-badge:hover {
  opacity: 0.85;
}

/* ─── Alternate Section Background ──────────────────────────── */
.bg-alt {
  background: var(--color-bg-alt);
}

/* ─── LinkedIn CTA ──────────────────────────────────────────── */
.cta-section {
  background: var(--color-dark);
  padding: 80px 24px;
  text-align: center;
}

.cta-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-hero-text);
  margin-bottom: 14px;
}

.cta-subtext {
  color: var(--color-hero-subtle);
  font-size: 15px;
  margin-bottom: 36px;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--color-dark);
  border-top: 1px solid var(--color-hero-rule);
  padding: 28px 24px;
  text-align: center;
  color: var(--color-hero-subtle);
  font-size: 12px;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 500px) {
  .stats-bar {
    max-width: 100%;
  }

  .stat-number {
    font-size: 24px;
  }

  .section {
    padding: 48px 20px;
  }
}
