/* ===========================
   ROOT & VARIABLES
   Theme: Warm Sunrise — Bold, Friendly, Energetic
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Bricolage+Grotesque:wght@300;400;500;600&family=Caveat:wght@500;600&display=swap');

:root {
  --bg: #FBF8F3;
  --bg2: #F5EFE6;
  --surface: #FFFFFF;
  --surface2: #FDF9F5;
  --ink: #1A1209;
  --ink2: #3D2E1A;
  --ink-dim: #8B7355;
  --orange: #FF6B35;
  --orange2: #FF8C5A;
  --orange-dim: rgba(255,107,53,0.1);
  --orange-glow: rgba(255,107,53,0.25);
  --teal: #0A9396;
  --teal2: #14B8A6;
  --teal-dim: rgba(10,147,150,0.1);
  --yellow: #FFD166;
  --yellow-dim: rgba(255,209,102,0.2);
  --pink: #EF476F;
  --green: #06D6A0;
  --border: rgba(26,18,9,0.08);
  --border2: rgba(26,18,9,0.15);
  --shadow: 0 4px 24px rgba(26,18,9,0.08);
  --shadow-lg: 0 20px 60px rgba(26,18,9,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --font-hand: 'Caveat', cursive;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 120px 0; }

/* ===========================
   NOISE TEXTURE OVERLAY
=========================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-radius 0.3s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 40px; height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.08s linear;
  opacity: 0.4;
}

.cursor.hover {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 4px;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(251,248,243,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  box-shadow: 0 4px 30px rgba(26,18,9,0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  position: relative;
}

.nav-logo span {
  color: var(--orange);
  display: inline-block;
  animation: dotBounce 2s ease-in-out infinite;
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta a {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta a:hover {
  background: var(--orange);
  transform: scale(1.05);
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 16px 0; }
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--orange); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  background: var(--bg);
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-dim) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: shapeDrift 12s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal-dim) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: shapeDrift 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--yellow-dim) 0%, transparent 70%);
  top: 30%; left: 35%;
  animation: shapeDrift 10s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes shapeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Floating dots decoration */
.hero-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDot linear infinite;
  opacity: 0;
}

@keyframes floatDot {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 64px;
  position: relative;
  z-index: 2;
}

/* PROFILE CARD */
.profile-card {
  flex-shrink: 0;
  width: 320px;
}

.card-inner {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: 28px;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 8px 8px 0 var(--orange);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-inner:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg), 12px 12px 0 var(--orange);
}

.card-glow { display: none; }

.profile-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3E8 0%, #FFE0C8 100%);
  position: relative;
}

.profile-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(160deg, #FFF8F2 0%, #FFE4CE 100%);
}

.profile-img-placeholder svg {
  width: 100%; height: 100%;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.img-hint {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,18,9,0.7);
  font-size: 10px;
  color: white;
  padding: 4px;
  text-align: center;
}

.profile-img-wrap:hover .img-hint { display: block; }

.card-body {
  padding: 20px 20px 24px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.card-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.card-badges span {
  font-size: 11px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--ink2);
  font-weight: 500;
}

.card-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.card-stats div { text-align: center; }

.card-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.card-stats small {
  font-size: 10px;
  color: var(--ink-dim);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

/* HERO TEXT */
.hero-text { flex: 1; }

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 8px;
  transform: rotate(-1deg);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
  position: relative;
}

.highlight-word {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 14px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-desc {
  font-size: 18px;
  color: var(--ink2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 100px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
  font-family: var(--font-display);
  box-shadow: 0 4px 20px var(--orange-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--orange-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 100px;
  border: 2px solid var(--border2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.hero-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tools-label {
  font-size: 12px;
  color: var(--ink-dim);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.tools-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tools-list span {
  font-size: 12px;
  padding: 5px 14px;
  background: var(--surface);
  border-radius: 100px;
  color: var(--ink2);
  border: 1.5px solid var(--border2);
  font-weight: 500;
  transition: 0.2s;
}
.tools-list span:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

.scroll-hint {
  position: absolute;
  bottom: 40px; left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.scroll-hint span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ink-dim);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ===========================
   MARQUEE TICKER
=========================== */
.marquee-section {
  background: var(--orange);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.marquee-item span {
  font-size: 18px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   SECTION LABELS & TITLES
=========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--ink2);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-text .section-title { margin-bottom: 28px; }
.about-text .btn-primary { margin-top: 8px; }

/* Floating cards */
.about-visual { position: relative; min-height: 440px; }
.about-card-stack { position: relative; width: 100%; height: 440px; }

.about-floating-card {
  position: absolute;
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 230px;
  box-shadow: 4px 4px 0 var(--border2);
  animation: floatCard 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.about-floating-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 6px 6px 0 var(--orange);
  border-color: var(--orange);
}

.card-a { top: 0; left: 0; rotate: -3deg; animation-delay: 0s; }
.card-b { top: 60px; right: 0; rotate: 2deg; animation-delay: -2s; }
.card-c { bottom: 80px; left: 20px; rotate: 1deg; animation-delay: -4s; }
.card-d { bottom: 10px; right: 20px; rotate: -2deg; animation-delay: -1s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fc-icon { font-size: 26px; flex-shrink: 0; }
.fc-text strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.fc-text span { font-size: 12px; color: var(--ink-dim); }

.about-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  animation: badgeSpin 20s linear infinite;
}

.about-center-badge span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.about-center-badge small {
  font-size: 9px;
  margin-top: 2px;
  opacity: 0.85;
}

@keyframes badgeSpin {
  0% { box-shadow: 4px 4px 0 var(--ink); }
  25% { box-shadow: -4px 4px 0 var(--ink); }
  50% { box-shadow: -4px -4px 0 var(--ink); }
  75% { box-shadow: 4px -4px 0 var(--ink); }
  100% { box-shadow: 4px 4px 0 var(--ink); }
}

/* ===========================
   SERVICES
=========================== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 4px 4px 0 var(--border2);
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
  border-color: var(--ink);
}

.service-combo {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}

.service-combo:hover {
  box-shadow: 8px 8px 0 var(--orange);
  border-color: var(--orange);
}

.service-combo h3 { color: white !important; }
.service-combo .service-number { color: var(--orange) !important; }
.service-combo p { color: rgba(255,255,255,0.85) !important; }
.service-combo .service-list li { color: rgba(255,255,255,0.85) !important; border-color: rgba(255,255,255,0.12) !important; }
.service-combo .service-list li::before { color: var(--orange) !important; }
.service-combo .service-tag { background: rgba(255,209,102,0.2) !important; color: var(--yellow) !important; border-color: var(--yellow) !important; }

.service-number {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: scale(1.2) rotate(5deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-list { list-style: none; margin-bottom: 28px; }

.service-list li {
  font-size: 14px;
  color: var(--ink2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '✦';
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange-dim);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--orange);
  letter-spacing: 0.3px;
}

.service-tag.best-value {
  background: var(--yellow-dim);
  color: var(--ink);
  border-color: var(--yellow);
}

/* ===========================
   SKILLS
=========================== */
.skills-section { background: var(--bg2); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-group {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 3px 3px 0 var(--border2);
}

.skill-group:nth-child(1):hover { box-shadow: 6px 6px 0 var(--orange); border-color: var(--orange); }
.skill-group:nth-child(2):hover { box-shadow: 6px 6px 0 var(--teal); border-color: var(--teal); }
.skill-group:nth-child(3):hover { box-shadow: 6px 6px 0 var(--pink); border-color: var(--pink); }
.skill-group:nth-child(4):hover { box-shadow: 6px 6px 0 var(--yellow); border-color: var(--yellow); }
.skill-group:nth-child(5):hover { box-shadow: 6px 6px 0 var(--green); border-color: var(--green); }
.skill-group:nth-child(6):hover { box-shadow: 6px 6px 0 var(--orange2); border-color: var(--orange2); }

.skill-group:hover { transform: translate(-3px, -3px); }

.skill-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--border2);
}

.skill-emoji { font-size: 22px; }

.skill-group-header h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.skill-tags span {
  font-size: 12px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  color: var(--ink2);
  padding: 5px 12px;
  border-radius: 100px;
  transition: 0.2s;
  font-weight: 500;
  cursor: default;
}

.skill-tags span:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: scale(1.05);
}

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

.timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--orange) 0px,
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 52px;
}

.timeline-dot {
  position: absolute;
  left: -36px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-content {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 4px 4px 0 var(--border2);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--orange);
  border-color: var(--orange);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.timeline-company {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 12px;
  font-style: italic;
}

.timeline-content p {
  font-size: 15px;
  color: var(--ink2);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.timeline-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.timeline-tags span {
  font-size: 11px;
  padding: 4px 12px;
  background: var(--orange-dim);
  color: var(--orange);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 1px solid var(--orange);
}

.certs-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-card {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 3px 3px 0 var(--border2);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--teal);
  border-color: var(--teal);
}

.cert-icon { font-size: 30px; flex-shrink: 0; }
.cert-card strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
.cert-card span { font-size: 13px; color: var(--ink-dim); }

/* ===========================
   SETUP
=========================== */
.setup { background: var(--bg2); }

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.setup-item {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 3px 3px 0 var(--border2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.setup-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.setup-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  border-color: var(--ink);
}

.setup-item:hover::before { transform: scaleX(1); }

.setup-icon { font-size: 38px; margin-bottom: 16px; display: block; }
.setup-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.setup-item p { font-size: 14px; color: var(--ink-dim); line-height: 1.7; }

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--ink); overflow: hidden; position: relative; }

.contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact .section-label { color: var(--orange); justify-content: center; }
.contact .section-label::before { background: var(--orange); }
.contact .section-title { color: white; }

.contact-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  line-height: 1.85;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  font-family: var(--font-display);
}

.contact-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateX(8px);
  box-shadow: -4px 0 0 var(--orange2);
}

.contact-btn-icon { font-size: 22px; }

.contact-note {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-note strong { color: rgba(255,255,255,0.8); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
  letter-spacing: -2px;
}
.footer-logo span { color: var(--orange); }

.footer p { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-copy { font-family: var(--font-hand); font-size: 16px; color: var(--orange); opacity: 0.8; }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-card {
  opacity: 0;
  transform: translateX(50px) rotate(3deg);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.visible, .reveal-card.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-content { gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-content { flex-direction: column; gap: 40px; }
  .profile-card { width: 100%; max-width: 320px; margin: 0 auto; }
  .profile-img-wrap { height: 260px; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-desc { font-size: 16px; }
  .scroll-hint { display: none; }

  .section { padding: 80px 0; }
  .container { padding: 0 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .about-card-stack { height: 320px; }
  .about-floating-card { width: 185px; }
  .section-title { letter-spacing: -0.5px; }
}

@media (max-width: 480px) {
  .setup-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
}


/* ===========================
   WORK SAMPLES
=========================== */
.samples { background: var(--bg); }

.samples-intro {
  font-size: 18px;
  color: var(--ink2);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sample-card {
  background: var(--surface);
  border: 2px solid var(--border2);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: 4px 4px 0 var(--border2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sample-card:nth-child(1):hover { box-shadow: 8px 8px 0 var(--orange); border-color: var(--orange); transform: translate(-4px, -4px); }
.sample-card:nth-child(2):hover { box-shadow: 8px 8px 0 var(--teal); border-color: var(--teal); transform: translate(-4px, -4px); }
.sample-card:nth-child(3):hover { box-shadow: 8px 8px 0 var(--pink); border-color: var(--pink); transform: translate(-4px, -4px); }
.sample-card:nth-child(4):hover { box-shadow: 8px 8px 0 var(--orange); border-color: var(--orange); transform: translate(-4px, -4px); }
.sample-card:nth-child(5):hover { box-shadow: 8px 8px 0 var(--yellow); border-color: var(--yellow); transform: translate(-4px, -4px); }
.sample-card:nth-child(6):hover { box-shadow: 8px 8px 0 var(--green); border-color: var(--green); transform: translate(-4px, -4px); }

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

.sample-icon { font-size: 40px; }

.sample-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1.5px solid var(--orange);
  letter-spacing: 0.5px;
}

.sample-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.sample-card p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  flex: 1;
}

.sample-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-meta span {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 100px;
  color: var(--ink-dim);
  font-weight: 500;
}

.sample-actions { margin-top: 4px; }

.btn-sample-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  border: 2px solid var(--ink);
}

.btn-sample-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.samples-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 2px dashed var(--border2);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 700px;
}

.samples-note span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.samples-note p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 1024px) {
  .samples-grid { grid-template-columns: 1fr 1fr; }
}

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