* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fafaf8;
  --bg2: #f3f2ee;
  --bg3: #eceae3;
  --card: #ffffff;
  --ink: #111109;
  --ink2: #4a4940;
  --ink3: #9a9888;
  --ink4: #c5c3b5;
  --orange: #d4500a;
  --orange2: #f06020;
  --blue: #1a4fba;
  --blue2: #2563eb;
  --teal: #0d6e5e;
  --border: #e2e0d6;
  --border2: #d0cec0;
  --font: "Bricolage Grotesque", sans-serif;
  --mono: "Geist Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 58px;
  background: rgba(250, 250, 248, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}
.logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-mid {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-mid a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mid a:hover {
  color: var(--orange);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--mono);
}
.avail-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: p 2s infinite;
}
@keyframes p {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.hire-btn {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
}
.hire-btn:hover {
  background: var(--orange);
}

/* HERO */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6.5rem 3rem 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.tag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(212, 80, 10, 0.08);
  border: 1px solid rgba(212, 80, 10, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.tag-sep {
  color: var(--ink4);
  font-size: 0.75rem;
}
.tag-loc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink3);
}
h1 {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
h1 .highlight {
  color: var(--orange);
  position: relative;
}
h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0.3;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-desc b {
  color: var(--ink);
  font-weight: 700;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  border: none;
  font-family: var(--font);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-1px);
}
.btn-sec {
  background: transparent;
  color: var(--ink);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid var(--border2);
  transition: all 0.2s;
  font-family: var(--font);
  cursor: pointer;
}
.btn-sec:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.s-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--ink2);
}
.s-chip.b {
  background: rgba(26, 79, 186, 0.06);
  border-color: rgba(26, 79, 186, 0.2);
  color: var(--blue);
}
.s-chip.o {
  background: rgba(212, 80, 10, 0.06);
  border-color: rgba(212, 80, 10, 0.2);
  color: var(--orange);
}

/* HERO RIGHT */
.hero-right {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.metric-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.metric-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.metric-card.featured .m-num {
  color: var(--bg);
}
.metric-card.featured .m-label {
  color: rgba(250, 250, 248, 0.5);
}
.metric-card.featured .m-sub {
  color: var(--orange2);
}
.m-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ink);
}
.m-label {
  font-size: 0.75rem;
  color: var(--ink3);
  margin-top: 0.2rem;
  font-weight: 500;
}
.m-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.5rem;
  font-family: var(--mono);
}
.m-icon {
  font-size: 2rem;
  opacity: 0.15;
}
.metrics-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mini-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.mini-n {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.mini-l {
  font-size: 0.7rem;
  color: var(--ink3);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--border);
  max-width: 1240px;
  margin: 0 auto;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.m-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
.m-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  font-family: var(--mono);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

/* SECTIONS */
.sec {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  font-family: var(--mono);
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.sec-sub {
  color: var(--ink2);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
}

/* PRIMARY SKILLS GRID */
.skills-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.skill-big {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.2s;
}
.skill-big:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(212, 80, 10, 0.08);
}
.skill-big.hero-skill {
  grid-column: span 2;
  background: var(--orange);
  border-color: var(--orange);
}
.skill-big.hero-skill .sk-name {
  color: #fff;
}
.skill-big.hero-skill .sk-desc {
  color: rgba(255, 255, 255, 0.75);
}
.skill-big.hero-skill .s-chip {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.sk-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}
.sk-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.sk-desc {
  font-size: 0.83rem;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.skills-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.skill-sm {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.2s;
}
.skill-sm:hover {
  background: var(--card);
  border-color: var(--border2);
}
.sk-sm-icon {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.sk-sm-name {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.sk-sm-desc {
  font-size: 0.78rem;
  color: var(--ink3);
  line-height: 1.55;
}

/* BONUS SKILLS — RE */
.bonus-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 1rem;
  align-items: start;
}
.bonus-left {
}
.bonus-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  font-family: var(--mono);
  margin-bottom: 0.5rem;
}
.bonus-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
.bonus-desc {
  font-size: 0.82rem;
  color: var(--ink2);
  line-height: 1.7;
}
.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.bonus-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.re-mini {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}
.re-mini-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.82rem;
}
.re-mini-desc {
  font-size: 0.75rem;
  color: var(--ink3);
  line-height: 1.5;
}

/* EXPERIENCE */
.exp-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  transition: background 0.15s;
}
.exp-item:first-child {
  padding-top: 0;
}
.exp-item:last-child {
  border-bottom: none;
}
.exp-left {
}
.exp-period {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.now-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(13, 110, 94, 0.1);
  border: 1px solid rgba(13, 110, 94, 0.25);
  color: var(--teal);
  font-family: var(--mono);
  text-transform: uppercase;
}
.exp-role {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
}
.exp-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-family: var(--mono);
}
.exp-body {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.exp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* PROJECTS */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.proj-card {
  background: var(--card);
  padding: 1.75rem;
  transition: background 0.15s;
  cursor: default;
}
.proj-card:hover {
  background: var(--bg2);
}
.proj-card:hover .proj-num {
  color: var(--orange);
}
.proj-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink4);
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.proj-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}
.proj-title {
  font-weight: 800;
  font-size: 0.97rem;
  letter-spacing: -0.25px;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.proj-desc {
  font-size: 0.82rem;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.proj-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.pchip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--ink3);
}
.pchip.b {
  background: rgba(26, 79, 186, 0.05);
  border-color: rgba(26, 79, 186, 0.18);
  color: var(--blue);
}
.pchip.o {
  background: rgba(212, 80, 10, 0.05);
  border-color: rgba(212, 80, 10, 0.18);
  color: var(--orange);
}
.pchip.t {
  background: rgba(13, 110, 94, 0.05);
  border-color: rgba(13, 110, 94, 0.18);
  color: var(--teal);
}

/* CONTACT */
.contact-inner {
  background: var(--ink);
  border-radius: 20px;
  padding: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.contact-left h2 span {
  color: var(--orange2);
}
.contact-left p {
  color: rgba(250, 250, 248, 0.55);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.contact-left .btn-primary {
  margin-top: 1.5rem;
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.c-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(250, 250, 248, 0.1);
  border-radius: 10px;
  color: rgba(250, 250, 248, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.c-link:hover {
  border-color: rgba(250, 250, 248, 0.25);
  color: var(--bg);
  background: rgba(250, 250, 248, 0.04);
}
.c-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(250, 250, 248, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink3);
  font-family: var(--mono);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .skills-primary {
    grid-template-columns: 1fr;
  }
  .skill-big.hero-skill {
    grid-column: 1;
  }
  .skills-secondary {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-row {
    grid-template-columns: 1fr;
  }
  .bonus-right {
    grid-template-columns: 1fr 1fr;
  }
  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  nav .nav-mid {
    display: none;
  }
}

/* ========================================
   🥷 NiNjA ENHANCEMENTS & EFFECTS
   ======================================== */

/* NiNjA background effects */
.NiNjA-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.NiNjA-star {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: NiNjA-float 15s infinite ease-in-out;
}

.NiNjA-star-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.NiNjA-star-2 {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.NiNjA-star-3 {
  bottom: 20%;
  left: 70%;
  animation-delay: 10s;
}

@keyframes NiNjA-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.NiNjA-shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 80, 10, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: NiNjA-pulse-bg 10s infinite;
  opacity: 0.05;
}

@keyframes NiNjA-pulse-bg {
  0%,
  100% {
    opacity: 0.05;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* NiNjA text effects */
.NiNjA-glow {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(212, 80, 10, 0.5);
}

.NiNjA-pulse {
  animation: NiNjA-pulse 2s infinite;
}

@keyframes NiNjA-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.NiNjA-shimmer {
  animation: NiNjA-shimmer 3s infinite;
}

@keyframes NiNjA-shimmer {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(212, 80, 10, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 80, 10, 0.6);
  }
}

.NiNjA-hover-lift {
  transition: all 0.3s;
}

.NiNjA-hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.NiNjA-btn-glow {
  box-shadow: 0 5px 20px rgba(212, 80, 10, 0.4);
}

.NiNjA-btn-glow:hover {
  box-shadow: 0 8px 30px rgba(212, 80, 10, 0.6);
}

.NiNjA-glow-card {
  box-shadow: 0 5px 30px rgba(212, 80, 10, 0.3);
}

.NiNjA-italic {
  font-style: italic;
  opacity: 0.9;
}

.NiNjA-quote {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
  margin-top: 1rem;
  text-shadow: 0 0 10px rgba(212, 80, 10, 0.3);
}

/* NiNjA cursor trail */
.NiNjA-trail {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(212, 80, 10, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: NiNjA-trail-fade 1s ease-out forwards;
  z-index: 9999;
}

/* --- Interactive NiNjA Background --- */
#NiNjA-canvas {
  position: fixed; /* Keep it locked to the screen */
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Ensure it stays behind all content */
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg); /* Match your body background */

  /* --- Dotted Grid Logic --- */
  background-color: var(--bg);
  background-image: radial-gradient(var(--orange) 1px, transparent 1px);
  background-size: 40px 40px; /* Adjust this to change grid density */
  opacity: 0.6;
}
body:not(.dark-mode) #ninja-canvas {
  background-image: radial-gradient(
    rgba(212, 80, 10, 0.15) 1px,
    transparent 1px
  );
}
.NiNjA-item {
  position: absolute;
  will-change: transform;
  pointer-events: none;
  opacity: 0.15;
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(212, 80, 10, 0.2));
}

/* Custom Cursor - Matching your Orange Theme */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  width: 35px;
  height: 35px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

/* Hide default cursor on the whole body */
body {
  cursor: none;
}
/* Ensure links still show they are clickable by scaling the cursor */
a,
button {
  cursor: none;
}


@keyframes NiNjA-trail-fade {
  to {
    opacity: 0;
    transform: scale(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem 3rem;
  }

  .skills-primary {
    grid-template-columns: 1fr;
  }

  .skill-big.hero-skill {
    grid-column: span 1;
  }

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

  .bonus-row {
    grid-template-columns: 1fr;
  }

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

  nav {
    padding: 0 1.5rem;
  }

  .nav-mid {
    display: none;
  }
}
