@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal-900: #134e4a;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-teal: 0 8px 24px rgba(13,148,136,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--teal-500); border-radius: 4px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gray-900);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--teal-600); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-600);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-700); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 3rem 5rem 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-100) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 1px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero h1 .name-teal { color: var(--teal-600); }

.hero-role {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.typed-text { color: var(--teal-700); font-weight: 600; }

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--teal-600);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink 0.85s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right column — visual card */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  width: 340px;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.hero-card-name { font-weight: 700; font-size: 1rem; color: var(--gray-900); }
.hero-card-title { font-size: 0.8rem; color: var(--teal-700); font-weight: 500; margin-top: 1px; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat { text-align: center; }
.hero-stat .val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-700);
  display: block;
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.75rem; color: var(--gray-400); margin-top: 3px; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 1.6rem;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,148,136,0.3);
}

.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--teal-700);
  border: 1.5px solid var(--teal-500);
}

.btn-outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-600);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 6rem 3rem; }
.section-alt { background: var(--gray-50); }
.section-teal { background: var(--teal-50); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────
   SKILL PILLS / TAGS
───────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
}

.tag-gray {
  background: var(--gray-100);
  color: var(--gray-600);
  border-color: var(--gray-200);
}

/* ─────────────────────────────────────────
   SKILL GROUP GRID
───────────────────────────────────────── */
.skill-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-group {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.skill-group:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200, #99f6e4);
}

.skill-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─────────────────────────────────────────
   STAT STRIP
───────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.stat-item {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.stat-item .num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1;
  display: block;
}

.stat-item .lbl {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-card-header {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  padding: 2.5rem 2rem;
  text-align: center;
}

.about-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 3px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1rem;
}

.about-card-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.about-card-header p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 2px; }

.about-info-list { padding: 1.5rem; }

.about-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  gap: 1rem;
}

.about-info-row:last-child { border-bottom: none; }
.about-info-row .key { color: var(--gray-400); font-weight: 500; flex-shrink: 0; }
.about-info-row .val { color: var(--gray-800); font-weight: 600; text-align: right; }
.about-info-row .val a { color: var(--teal-700); text-decoration: none; }
.about-info-row .val a:hover { text-decoration: underline; }

.about-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 1.5rem;
}

.availability-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─────────────────────────────────────────
   TIMELINE
───────────────────────────────────────── */
.timeline { position: relative; padding-left: 1.75rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal-600);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-200, #99f6e4);
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--teal-600);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.timeline-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.timeline-org {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.timeline-bullets { list-style: none; padding: 0; }

.timeline-bullets li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
  line-height: 1.6;
}

.timeline-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal-500);
}

/* ─────────────────────────────────────────
   PROJECT CARDS
───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-400);
}

.project-header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.project-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-600);
  margin-bottom: 0.4rem;
}

.project-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.2px;
}

.project-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }

.project-footer {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   FILTER BUTTONS
───────────────────────────────────────── */
.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}

.filter-btn:hover { border-color: var(--teal-400); color: var(--teal-700); }
.filter-btn.active { background: var(--teal-600); color: var(--white); border-color: var(--teal-600); }

/* ─────────────────────────────────────────
   BLOG CARDS
───────────────────────────────────────── */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-400);
}

.blog-accent { height: 4px; background: linear-gradient(90deg, var(--teal-600), var(--teal-400)); }

.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.6rem;
}

.blog-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.blog-body p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  color: var(--gray-400);
}

.read-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-700);
  text-decoration: none;
}

.read-link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.contact-intro p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg { width: 18px; height: 18px; stroke: var(--teal-700); fill: none; stroke-width: 1.75; }

.contact-row-text .label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-400); }
.contact-row-text .val { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); }
.contact-row-text .val a { color: var(--gray-800); text-decoration: none; }
.contact-row-text .val a:hover { color: var(--teal-700); }

.social-row { display: flex; gap: 0.75rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
}

.social-btn:hover { border-color: var(--teal-400); color: var(--teal-700); background: var(--teal-50); }

/* ─────────────────────────────────────────
   FORM
───────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.contact-form h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-msg {
  display: none;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 7px;
  margin-top: 0.75rem;
}

.form-msg.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-msg.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding: 4rem 3rem 3.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.page-hero p { font-size: 1rem; color: var(--gray-500); max-width: 540px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
}

.footer-brand span { color: var(--teal-600); }

footer p { font-size: 0.8rem; color: var(--gray-400); }
footer a { color: var(--teal-600); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   FADE IN
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; text-align: center; }
  .hero::after { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-card { max-width: 360px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.65rem 0; border-bottom: 1px solid var(--gray-100); }
  .nav-links li:last-child a { border-bottom: none; }
  .section { padding: 4rem 1.5rem; }
  .page-hero { padding: 2.5rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid, .blogs-grid { grid-template-columns: 1fr; }
}
