/* ============================================
   Jetstream Projects Ltd — Styles
   Dark navy + orange accent, aviation corporate
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: 5rem;
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }

a, button, [role='button'], [role='link'], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

::selection { background: oklch(from var(--color-accent) l c h / 0.3); color: #fff; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.skip-link {
  position: absolute; top: -100%; left: var(--space-4); z-index: 999;
  padding: var(--space-2) var(--space-4); background: var(--color-accent);
  color: #fff; border-radius: var(--radius-md); font-size: var(--text-sm);
}
.skip-link:focus { top: var(--space-2); }


/* === DESIGN TOKENS === */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing (4px base) */
  --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;

  /* Radius */
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem;
  --radius-xl: 1rem; --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px; --content-default: 960px; --content-wide: 1200px;

  /* Fonts */
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
}


/* === DARK THEME (Default) === */
:root, [data-theme="dark"] {
  --color-bg: #0b1526;
  --color-surface: #0f1c33;
  --color-surface-2: #132240;
  --color-surface-offset: #0e1a30;
  --color-surface-offset-2: #17253f;
  --color-divider: #1c2e4d;
  --color-border: #243659;
  --color-text: #e0e4ec;
  --color-text-muted: #8a94a8;
  --color-text-faint: #4f5d78;
  --color-text-inverse: #0b1526;
  --color-accent: #e8762a;
  --color-accent-hover: #f08a3e;
  --color-accent-active: #cc6620;
  --color-accent-soft: rgba(232, 118, 42, 0.12);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* === LIGHT THEME === */
[data-theme="light"] {
  --color-bg: #f5f6fa;
  --color-surface: #ffffff;
  --color-surface-2: #f0f1f5;
  --color-surface-offset: #ebedf3;
  --color-surface-offset-2: #e3e5ed;
  --color-divider: #d5d8e2;
  --color-border: #c5c9d6;
  --color-text: #1a1f2e;
  --color-text-muted: #5a6178;
  --color-text-faint: #9aa0b2;
  --color-text-inverse: #f5f6fa;
  --color-accent: #d06820;
  --color-accent-hover: #b85a1a;
  --color-accent-active: #a04e16;
  --color-accent-soft: rgba(208, 104, 32, 0.1);

  --shadow-sm: 0 1px 3px rgba(26,31,46,0.06);
  --shadow-md: 0 4px 16px rgba(26,31,46,0.1);
  --shadow-lg: 0 12px 40px rgba(26,31,46,0.14);
}

/* Dark is always the default. Light requires explicit toggle. */


/* === LAYOUT === */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

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

.section__header {
  text-align: left;
  margin-bottom: var(--space-12);
  max-width: 640px;
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

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

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
}


/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.header__logo { display: flex; align-items: center; position: relative; z-index: 210; }

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-text__primary { color: var(--color-text); }
.logo-text__secondary { color: var(--color-accent); }

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

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.nav__link:hover { color: var(--color-text); background: var(--color-accent-soft); }
.nav__link--cta {
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--color-accent-hover); color: #fff; }

.header__actions {
  display: flex; align-items: center; gap: var(--space-2);
  position: relative;
  z-index: 210;
}

.theme-toggle {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-accent-soft); }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px; border-radius: var(--radius-md);
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger__line {
  width: 22px; height: 2px; background: var(--color-text);
  border-radius: 2px; transition: all 0.3s var(--ease-out);
  display: block;
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay — the nav is inside the header flex, so we 
   use height: 100dvh and override flex constraints */
.header__nav.mobile-open {
  display: flex !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important; 
  width: 100vw !important; 
  height: 100dvh !important;
  z-index: 200;
  padding-top: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0b1526;
}
[data-theme="light"] .header__nav.mobile-open {
  background-color: #f5f6fa;
}
[data-theme="dark"] .header__nav.mobile-open {
  background-color: #0b1526;
}
.header__nav.mobile-open .nav__list {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  width: 100%;
}
.header__nav.mobile-open .nav__link {
  font-size: var(--text-lg);
  padding: var(--space-3) var(--space-6);
  color: var(--color-text);
}


/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 21, 38, 0.7) 0%,
    rgba(11, 21, 38, 0.85) 50%,
    rgba(11, 21, 38, 0.95) 100%
  );
}

[data-theme="light"] .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(245, 246, 250, 0.55) 0%,
    rgba(245, 246, 250, 0.78) 50%,
    rgba(245, 246, 250, 0.95) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: var(--space-24) var(--space-4) var(--space-16);
  text-align: left;
}

@media (min-width: 768px) {
  .hero__content { padding: var(--space-32) var(--space-8) var(--space-20); }
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

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

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-faint);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.3; }
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active {
  background: var(--color-accent-active);
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}
.btn--outline:active { transform: translateY(0); }

.btn--linkedin {
  background: #0a66c2;
  color: #fff;
  padding: var(--space-3) var(--space-5);
}
.btn--linkedin:hover {
  background: #004182;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}


/* === STATS BAR === */
.stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-8) var(--space-4);
}

.stats__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.stats__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
}

.stats__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  line-height: 1;
}

.stats__icon { color: var(--color-accent); display: flex; flex-shrink: 0; }

.stats__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.stats__divider {
  width: 1px;
  height: 32px;
  background: var(--color-divider);
}

@media (max-width: 767px) {
  .stats__inner { gap: var(--space-3); }
  .stats__divider { display: none; }
  .stats__item { flex: 1 1 calc(50% - var(--space-3)); justify-content: center; min-width: 160px; }
}


/* === SERVICES === */
.services { background: var(--color-surface-offset); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive),
    border-color var(--transition-interactive);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-soft);
}
.service-card:hover .service-card__icon { color: var(--color-accent); }

.service-card__icon {
  color: var(--color-text-faint);
  margin-bottom: var(--space-5);
  transition: color var(--transition-interactive);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.service-card__link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
}
.service-card__link:hover { text-decoration: underline; }


/* === ABOUT === */
.about { background: var(--color-bg); }

.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.about__content .section__eyebrow { margin-bottom: var(--space-3); }
.about__content .section__title { margin-bottom: var(--space-6); }

.about__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about__text:last-of-type { margin-bottom: var(--space-6); }

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__image img {
  width: 100%; height: 100%; object-fit: cover;
}


/* === EXPERIENCE === */
.experience {
  background: var(--color-bg);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}

.exp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-8);
  position: relative;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.exp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.exp-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.exp-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* === IMAGE BREAK === */
.image-break {
  position: relative;
  height: clamp(240px, 40vw, 480px);
  overflow: hidden;
}
.image-break img {
  width: 100%; height: 100%; object-fit: cover;
}
.image-break__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg) 0%,
    transparent 20%,
    transparent 80%,
    var(--color-surface-offset) 100%
  );
  pointer-events: none;
}


/* === PROJECTS === */
.projects {
  background: var(--color-surface-offset);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.project-card__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  opacity: 0.4;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.project-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.project-card__tags li {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}


/* === CTA SECTION === */
.cta-section {
  background: var(--color-accent);
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
}

.cta-section__inner {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-section__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 56ch;
  margin-inline: auto;
}

.cta-section .btn--primary {
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
}
.cta-section .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Override CTA section accent in light mode */
[data-theme="light"] .cta-section { background: var(--color-accent); }
[data-theme="light"] .cta-section .btn--primary { color: var(--color-accent); }


/* === FOOTER === */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-4) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-10);
  }
}

.footer__brand .logo-text { font-size: 1.3rem; margin-bottom: var(--space-4); display: block; }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
  line-height: 1.6;
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__list a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}
.footer__list a:hover { color: var(--color-accent); }

.footer__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  text-align: center;
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: unset;
}
.footer__credits { margin-top: var(--space-2); }
.footer__credits a { text-decoration: underline; text-underline-offset: 2px; }


/* === SCROLL REVEAL ANIMATIONS === */
.fade-in { opacity: 1; }

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}


/* === RESPONSIVE UTILITIES === */
@media (max-width: 767px) {
  .hero__content {
    padding: calc(var(--space-24) + 2rem) var(--space-4) var(--space-12);
  }
  .section__header { margin-bottom: var(--space-8); }
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--space-8); }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}
