/* ───────────────────────────────────────────
   DESIGN TOKENS — Dark / Light / High-Contrast
   ─────────────────────────────────────────── */
:root {
  color-scheme: dark;

  /* colors */
  --bg-primary: #0A0A0F;
  --bg-elevated: #15151C;
  --bg-overlay: #1F1F28;
  --bg-surface: #2A2A35;
  --text-primary: #E8E6E3;
  --text-secondary: #9A968F;
  --text-tertiary: #5C5A55;
  --gold: #C9A961;
  --gold-elevated: #E4C076;
  --gold-dim: rgba(201,169,97,0.22);
  --gold-glow: rgba(201,169,97,0.10);
  --purple-deep: #6B4F8C;
  --purple-soft: #B8A4D4;
  --success: #7CB97A;
  --warning: #D4A76A;
  --error: #C97A7A;
  --info: #7A9EC9;

  /* fonts */
  --font-display: 'Cormorant Garamond', 'EB Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* spacing */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* layout */
  --radius: 2px;
  --hairline: 1px solid var(--gold-dim);
  --container: 1200px;
  --container-narrow: 720px;
  --container-wide: 1400px;

  /* motion */
  --ease-default: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-enter: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-exit: cubic-bezier(0.4, 0.0, 1, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.62, 0.05, 0.01, 0.99);
  --duration-instant: 100ms;
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-dramatic: 800ms;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg-primary: #F5F3EF;
  --bg-elevated: #EDE9E2;
  --bg-overlay: #E6E1D8;
  --bg-surface: #DCD5CA;
  --text-primary: #1A1917;
  --text-secondary: #5E5C57;
  --text-tertiary: #9A968F;
  --gold: #8F753D;
  --gold-elevated: #A88B4A;
  --gold-dim: rgba(168,139,74,0.22);
  --gold-glow: rgba(168,139,74,0.10);
  --purple-deep: #5A3F7A;
  --purple-soft: #7B6A9C;
}

:root[data-theme="high-contrast"] {
  color-scheme: dark;
  --bg-primary: #000000;
  --bg-elevated: #000000;
  --bg-overlay: #111111;
  --bg-surface: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #FFFFFF;
  --text-tertiary: #FFFFFF;
  --gold: #FFD700;
  --gold-elevated: #FFD700;
  --gold-dim: rgba(255,215,0,0.35);
  --gold-glow: rgba(255,215,0,0.15);
  --purple-soft: #D0B4FF;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) { color-scheme: light; }
}

/* ───────────────────────────────────────────
   BASE
   ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { margin: 0; background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); font-size: 16px; line-height: 1.6; font-weight: 400; min-height: 100vh; overflow-x: hidden; transition: background var(--duration-fast) var(--ease-default), color var(--duration-fast) var(--ease-default); }
::selection { background: var(--gold-dim); color: var(--text-primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; }
p { margin: 0; }
a { color: var(--gold); text-decoration: none; transition: color var(--duration-fast) var(--ease-default); }

/* Skip link */
.skip-link { position: absolute; left: -10000px; top: 8px; padding: 8px 16px; background: var(--gold); color: var(--bg-primary); font-weight: 600; z-index: 10000; border-radius: var(--radius); }
.skip-link:focus { left: 8px; outline: 2px solid var(--gold); outline-offset: 4px; }

/* Custom cursor */
.cursor-dot { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%) scale(1); transition: width 0.15s var(--ease-bounce), height 0.15s var(--ease-bounce), background 0.15s var(--ease-default), opacity 0.2s ease; mix-blend-mode: difference; }
.cursor-dot.hover { width: 40px; height: 40px; background: transparent; border: 1px solid var(--gold); opacity: 0.75; }
.cursor-dot.hidden { opacity: 0; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0%; z-index: 10001; transform-origin: left; }

/* Back to top */
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-elevated); border: var(--hairline); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; opacity: 0; pointer-events: none; transition: opacity var(--duration-normal) var(--ease-default), transform var(--duration-normal) var(--ease-default), background var(--duration-fast) var(--ease-default), border-color var(--duration-fast) var(--ease-default); z-index: 9999; transform: translateY(12px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); outline: none; }
.back-to-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* Loading state */
.page-loader { position: fixed; inset: 0; background: var(--bg-primary); z-index: 20000; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: opacity var(--duration-slow) var(--ease-default), visibility 0s linear var(--duration-slow); }
.page-loader.loaded { opacity: 0; visibility: hidden; }
.page-loader__mark { font-family: var(--font-display); font-size: 48px; color: var(--gold); animation: breathe 2s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { opacity: 0.4; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.04); } }

/* ───────────────────────────────────────────
   SHADER / FALLBACK BACKGROUND
   ─────────────────────────────────────────── */
.hero-shader { position: absolute; inset: 0; z-index: 0; }
.hero-shader canvas { display: block; width: 100%; height: 100%; }
.hero-shader .shader-fallback { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(201,169,97,0.08) 0%, transparent 55%), radial-gradient(ellipse at 80% 80%, rgba(107,79,140,0.06) 0%, transparent 45%), linear-gradient(180deg, var(--bg-primary) 0%, #0d0d12 100%); opacity: 0; transition: opacity var(--duration-slow) var(--ease-default); }
.hero-shader.ready .shader-fallback { opacity: 1; }

/* ───────────────────────────────────────────
   NAVIGATION
   ─────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 9998; background: rgba(10,10,15,0.85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: var(--hairline); transform: translateY(-100%); transition: background var(--duration-fast) var(--ease-default), border-color var(--duration-fast) var(--ease-default); }
.nav.is-visible { transform: translateY(0); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 16px 32px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: var(--space-md); }
.nav__brand { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); letter-spacing: 0.02em; position: relative; }
.nav__brand svg { width: 32px; height: 32px; display: block; }
.nav__links { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.nav__links a { color: var(--text-primary); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 0; position: relative; font-weight: 500; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--gold); transition: right var(--duration-fast) var(--ease-default); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }
.nav__links a.is-active::after { right: 0; }
.nav__links a.is-active::before { content: ""; position: absolute; left: 50%; top: -6px; transform: translateX(-50%); width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.nav__cta { font-size: 13px; padding: 10px 22px; }
.nav__toggle { display: none; }
.nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; background: none; border: none; padding: 10px; border-radius: var(--radius); }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: transform var(--duration-fast) var(--ease-default), opacity var(--duration-fast) var(--ease-default); }
.nav__hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.nav__mobile-menu { display: none; position: fixed; inset: 57px 0 auto 0; background: rgba(10,10,15,0.98); backdrop-filter: blur(16px); border-bottom: var(--hairline); padding: var(--space-md); flex-direction: column; gap: var(--space-sm); }
.nav__mobile-links { display: flex; flex-direction: column; gap: var(--space-sm); align-items: center; }
.nav__mobile-links a { color: var(--text-primary); font-size: 16px; letter-spacing: 0.02em; padding: 8px 0; }
.nav__mobile-menu .btn { width: 100%; text-align: center; margin-top: var(--space-sm); }
.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__toggle:checked ~ .nav__mobile-menu { display: flex; }

.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid transparent; background: transparent; color: var(--text-secondary); cursor: pointer; transition: color var(--duration-fast) var(--ease-default), border-color var(--duration-fast) var(--ease-default), background var(--duration-fast) var(--ease-default); }
.theme-toggle:hover, .theme-toggle:focus-visible { color: var(--gold); border-color: var(--gold-dim); background: var(--bg-elevated); }
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.theme-toggle svg { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 860px) {
  .nav__inner { grid-template-columns: auto 1fr auto auto; padding: 12px 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ───────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius); transition: transform var(--duration-normal) var(--ease-default), background var(--duration-fast) var(--ease-default), color var(--duration-fast) var(--ease-default), border-color var(--duration-fast) var(--ease-default), box-shadow var(--duration-fast) var(--ease-default); cursor: pointer; border: 1px solid transparent; min-height: 44px; min-width: 44px; position: relative; overflow: hidden; }
.btn--primary { background: var(--gold); color: var(--bg-primary) !important; border-color: var(--gold); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--gold-elevated); border-color: var(--gold-elevated); color: var(--bg-primary) !important; box-shadow: 0 0 24px var(--gold-glow); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--gold-dim); color: var(--gold-elevated) !important; border-color: var(--gold-elevated); }
.btn--text { background: transparent; color: var(--gold); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn--text:hover, .btn--text:focus-visible { color: var(--gold-elevated); }
.btn--lg { font-size: 14px; padding: 18px 36px; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.btn.magnetic { transition: transform 0.12s var(--ease-smooth); }

/* ───────────────────────────────────────────
   SECTIONS
   ─────────────────────────────────────────── */
.section { padding: clamp(72px, 12vw, var(--space-4xl)) var(--space-md); max-width: var(--container); margin: 0 auto; position: relative; }
.section--narrow { max-width: var(--container-narrow); }
.section--wide { max-width: var(--container-wide); }
.section__label { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: var(--space-lg); }
.section__sublabel { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary); text-align: center; margin: var(--space-lg) 0 var(--space-md); }
.section .lead { font-style: italic; color: var(--text-secondary); text-align: center; margin: 0 auto var(--space-lg); max-width: 68ch; font-size: 16px; line-height: 1.7; }
.section .cta-row { display: flex; justify-content: center; margin-top: var(--space-lg); flex-wrap: wrap; gap: var(--space-sm); }

.section-divider { position: relative; height: 1px; max-width: var(--container); margin: 0 auto; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.section-divider::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg); width: 8px; height: 8px; border: 1px solid var(--gold-dim); background: var(--bg-primary); }

.geometric-grid { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: linear-gradient(var(--gold-dim) 1px, transparent 1px), linear-gradient(90deg, var(--gold-dim) 1px, transparent 1px); background-size: 80px 80px; z-index: 0; }

/* ───────────────────────────────────────────
   HERO
   ─────────────────────────────────────────── */
.hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: clamp(96px, 14vw, 160px) var(--space-md); position: relative; overflow: hidden; }
.hero__inner { text-align: center; max-width: 920px; position: relative; z-index: 1; }
.hero__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 9vw, 88px); line-height: 1.05; letter-spacing: 0.04em; color: var(--gold); margin: 0 0 var(--space-md); opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth); }
.hero__name.visible { opacity: 1; transform: translateY(0); }
.hero__rule { width: 0; height: 1px; background: var(--gold); margin: 0 auto var(--space-md); opacity: 0.7; transition: width 1.2s var(--ease-smooth); }
.hero__rule.animated { width: 240px; }
.hero__tagline { font-size: clamp(17px, 2.4vw, 23px); color: var(--text-primary); margin: 0 0 var(--space-sm); line-height: 1.4; opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease-smooth) 0.2s, transform 1s var(--ease-smooth) 0.2s; }
.hero__tagline.visible { opacity: 1; transform: translateY(0); }
.hero__locations { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary); margin: 0 0 var(--space-lg); opacity: 0; transition: opacity 1s var(--ease-smooth) 0.4s; }
.hero__locations.visible { opacity: 1; }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-sm); opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease-smooth) 0.5s, transform 1s var(--ease-smooth) 0.5s; }
.hero__actions.visible { opacity: 1; transform: translateY(0); }
.hero__sigil { position: absolute; bottom: 48px; right: 48px; width: 160px; height: 160px; opacity: 0.08; pointer-events: none; user-select: none; z-index: 1; }
.hero__sigil svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1; }

@media (max-width: 720px) { .hero__sigil { width: 80px; height: 80px; bottom: 24px; right: 24px; } .hero__actions { flex-direction: column; align-items: center; } .hero__actions .btn { width: 100%; max-width: 320px; } }

/* ───────────────────────────────────────────
   GRID
   ─────────────────────────────────────────── */
.grid { display: grid; gap: var(--space-md); position: relative; z-index: 1; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--featured { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-md); }
@media (max-width: 1024px) { .grid--3, .grid--4, .grid--featured { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4, .grid--featured { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────
   TILE
   ─────────────────────────────────────────── */
.tile { padding: var(--space-md); background: var(--bg-elevated); border: var(--hairline); border-radius: var(--radius); transition: transform var(--duration-normal) var(--ease-default), border-color var(--duration-fast) var(--ease-default), box-shadow var(--duration-normal) var(--ease-default); }
.tile:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.tile__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--gold); margin: 0 0 var(--space-xs); letter-spacing: 0.01em; }
.tile__body { font-size: 14px; color: var(--text-primary); line-height: 1.6; }

/* ───────────────────────────────────────────
   BRIEF
   ─────────────────────────────────────────── */
.brief { font-size: 17px; line-height: 1.8; max-width: 68ch; margin: 0 auto; color: var(--text-primary); }
.brief .line { display: block; }

/* ───────────────────────────────────────────
   ROLES
   ─────────────────────────────────────────── */
.roles { display: grid; gap: 14px; max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.role { display: grid; grid-template-columns: minmax(260px, 1fr) auto 2fr; align-items: baseline; gap: var(--space-sm); padding: 14px 18px; border-radius: var(--radius); transition: background var(--duration-fast) var(--ease-default), transform var(--duration-normal) var(--ease-default); border: 1px solid transparent; }
.role:hover { background: var(--bg-elevated); border-color: var(--gold-dim); transform: translateX(4px); }
.role__title { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--text-primary); }
.role__rule { color: var(--text-tertiary); }
.role__differentiator { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 720px) { .role { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; } .role__rule { display: none; } }

/* ───────────────────────────────────────────
   CARD
   ─────────────────────────────────────────── */
.card { background: var(--bg-elevated); border: var(--hairline); border-radius: var(--radius); padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); transition: transform var(--duration-normal) var(--ease-default), border-color var(--duration-fast) var(--ease-default), box-shadow var(--duration-normal) var(--ease-default); }
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.18); }
.card--anchor { padding: var(--space-lg) var(--space-md); }
.card--anchor .card__title { font-size: 26px; }
.card--compact { padding: var(--space-md); }
.card--compact .card__title { font-size: 18px; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); margin: 0; letter-spacing: 0.01em; }
.card__eyebrow { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0; }
.card__body { font-size: 14px; line-height: 1.6; color: var(--text-primary); flex-grow: 1; }
.card__rate { font-size: 13px; font-style: italic; color: var(--text-secondary); margin: 0; }
.card__sub { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.card .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 640px) { .card .btn { align-self: stretch; text-align: center; } }

/* ───────────────────────────────────────────
   PROJECT
   ─────────────────────────────────────────── */
.project { background: var(--bg-elevated); border: var(--hairline); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; gap: 0; transition: transform var(--duration-normal) var(--ease-default), border-color var(--duration-fast) var(--ease-default), box-shadow var(--duration-normal) var(--ease-default); }
.project:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,0.18); }
.project__image-wrap { overflow: hidden; border-bottom: var(--hairline); position: relative; }
.project__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 6s var(--ease-smooth); }
.project:hover .project__image { transform: scale(1.05); }
.project__content { padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-xs); }
.project__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); margin: 0; }
.project__subtitle { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }
.project__period { font-size: 12px; color: var(--text-tertiary); margin: 0; }
.project__body { font-size: 14px; line-height: 1.6; color: var(--text-primary); }
.project__stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-xs); }
.project__stack li { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); padding: 4px 10px; background: var(--bg-overlay); border: var(--hairline); border-radius: var(--radius); }

/* ───────────────────────────────────────────
   EXPERIENCE
   ─────────────────────────────────────────── */
.role-entry { display: grid; gap: var(--space-sm); padding: var(--space-lg) 0; border-bottom: var(--hairline); }
.role-entry:last-child { border-bottom: none; }
.role-entry__header { display: grid; grid-template-columns: 1fr auto; gap: var(--space-md); align-items: baseline; }
.role-entry__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); margin: 0; }
.role-entry__company { font-size: 14px; color: var(--text-secondary); margin: 0; }
.role-entry__dates { font-size: 13px; color: var(--text-tertiary); text-align: right; }
.role-entry__achievements { display: grid; gap: 8px; }
.role-entry__achievements li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.6; color: var(--text-primary); }
.role-entry__achievements li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 720px) { .role-entry__header { grid-template-columns: 1fr; gap: 4px; } .role-entry__dates { text-align: left; } }

/* ───────────────────────────────────────────
   CERTS + EDUCATION
   ─────────────────────────────────────────── */
.certs, .education { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.certs li, .education li { font-size: 15px; color: var(--text-primary); padding: 12px 0; border-bottom: var(--hairline); }
.certs li:last-child, .education li:last-child { border-bottom: none; }
.cert__meta, .edu__status, .edu__period { display: block; font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ───────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────── */
.contact-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-sm); max-width: 860px; margin: 0 auto; }

/* ───────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────── */
.footer { padding: var(--space-lg) var(--space-md); text-align: center; border-top: var(--hairline); }
.footer p { font-size: 13px; color: var(--text-tertiary); letter-spacing: 0.02em; }

/* ───────────────────────────────────────────
   REVEAL ANIMATIONS
   ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
