/* ============================================
   SCOTTMAKERS.COM - Portfolio Styles
   ============================================
   Aesthetic: Bold, Orange-forward, Innovative
   Positioning: AI Knowledge Engineer, Strategic Leader
   ============================================ */

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Primary Palette - Orange Forward */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  /* Deep Charcoal - Sophistication */
  --charcoal-900: #0a0a0b;
  --charcoal-800: #141417;
  --charcoal-700: #1e1e23;
  --charcoal-600: #2a2a32;
  --charcoal-500: #3d3d47;

  /* Warm Neutrals */
  --cream-50: #fefdfb;
  --cream-100: #faf8f5;
  --cream-200: #f5f2ed;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;

  /* Semantic */
  --text-primary: var(--charcoal-900);
  --text-secondary: var(--gray-500);
  --text-inverse: var(--cream-50);
  --bg-primary: var(--cream-50);
  --bg-dark: var(--charcoal-900);
  --accent: var(--orange-500);
  --accent-hover: var(--orange-600);

  /* Typography Scale */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-7xl); }
  h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-3xl); }
}

p {
  margin-bottom: var(--space-4);
}

.lead {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .lead {
    font-size: var(--text-xl);
  }
}

/* Text utilities */
.text-orange { color: var(--accent); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.section--cream {
  background-color: var(--cream-100);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(254, 253, 251, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
}

.nav.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__logo-accent {
  color: var(--accent);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.hero__content {
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease both;
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease 0.1s both;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-8xl);
  }
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  color: var(--accent);
  position: relative;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease 0.2s both;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--text-xl);
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: 4px;
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--accent);
  color: white;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn--outline {
  border: 2px solid var(--charcoal-700);
  color: var(--text-primary);
}

.btn--outline:hover {
  background: var(--charcoal-900);
  color: var(--text-inverse);
  border-color: var(--charcoal-900);
}

.btn--ghost {
  color: var(--text-primary);
  padding: var(--space-2) 0;
}

.btn--ghost:hover {
  color: var(--accent);
}

.btn--ghost .btn__arrow {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   METRICS BAR
   ============================================ */
.metrics {
  padding: var(--space-12) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--cream-100);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .metrics__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric {
  text-align: center;
}

.metric__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .metric__value {
    font-size: var(--text-5xl);
  }
}

.metric__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: var(--space-24) 0;
}

.intro__content {
  max-width: 800px;
}

.intro__heading {
  margin-bottom: var(--space-6);
}

.intro__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

.intro__text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   CASE STUDIES / WORK CARDS
   ============================================ */
.work-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height var(--transition-base);
}

.work-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.work-card:hover::before {
  height: 100%;
}

.work-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.work-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.work-card__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.work-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.work-card__metric {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.work-card__metric::before {
  content: '✓';
  color: var(--orange-500);
  font-weight: 600;
}

.work-card__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.work-card__link:hover {
  gap: var(--space-3);
}

/* ============================================
   PHILOSOPHY TEASER
   ============================================ */
.philosophy {
  background: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-6);
}

.philosophy__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .philosophy__title {
    font-size: var(--text-4xl);
  }
}

.philosophy__text {
  font-size: var(--text-lg);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.philosophy__concepts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.philosophy__concept {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--charcoal-600);
  border-radius: 100px;
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.philosophy__concept:hover {
  border-color: var(--orange-500);
  color: var(--orange-400);
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills__heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.skill-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: var(--space-8);
}

.skill-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: var(--text-xl);
}

.skill-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.skill-card__list {
  list-style: none;
}

.skill-card__list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.skill-card__list li:last-child {
  border-bottom: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-section__title {
    font-size: var(--text-4xl);
  }
}

.cta-section__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.cta-section .btn--white {
  background: white;
  color: var(--orange-600);
}

.cta-section .btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.cta-section .btn--ghost-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-section .btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal-900);
  color: var(--gray-400);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
}

.footer__logo span {
  color: var(--orange-500);
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--orange-400);
}

.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--charcoal-700);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  padding-top: 120px;
  padding-bottom: var(--space-16);
}

.about-hero__grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .about-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero__image {
  aspect-ratio: 4/5;
  background: var(--cream-200);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  pointer-events: none;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gray-400);
}

.about-story {
  max-width: 700px;
}

.about-story p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.about-story p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: var(--space-3);
  color: var(--accent);
}

/* Values */
.values-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: var(--space-8);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.value-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.value-card__title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.value-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   RESUME PAGE STYLES
   ============================================ */
.resume-hero {
  padding-top: 120px;
  padding-bottom: var(--space-12);
  text-align: center;
}

.resume-downloads {
  display: grid;
  gap: var(--space-4);
  max-width: 500px;
  margin: var(--space-12) auto;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all var(--transition-base);
}

.download-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.download-card__info {
  text-align: left;
}

.download-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.download-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.download-card__btn {
  background: var(--accent);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-200);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline__item {
  position: relative;
  padding-left: var(--space-10);
  padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .timeline__item {
    width: 50%;
    padding-left: 0;
    padding-right: var(--space-10);
  }

  .timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-left: var(--space-10);
    padding-right: 0;
  }
}

.timeline__dot {
  position: absolute;
  left: -5px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

@media (min-width: 768px) {
  .timeline__dot {
    left: auto;
    right: -6px;
  }

  .timeline__item:nth-child(even) .timeline__dot {
    right: auto;
    left: -6px;
  }
}

.timeline__date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.timeline__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.timeline__company {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.timeline__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
  padding-top: 120px;
  padding-bottom: var(--space-12);
}

.contact-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info__item {
  margin-bottom: var(--space-8);
}

.contact-info__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.contact-info__value {
  font-size: var(--text-xl);
}

.contact-info__value a:hover {
  color: var(--accent);
}

.contact-options {
  display: grid;
  gap: var(--space-6);
}

.contact-option {
  padding: var(--space-8);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: all var(--transition-base);
}

.contact-option:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.contact-option__icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.contact-option__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.contact-option__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }


/* Footer legal links */
.footer__legal {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer__separator {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Mobile responsiveness for legal links */
@media (max-width: 768px) {
  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }

  .footer__separator {
    display: none;
  }
}
