:root {
  --bg-cyan: #d1faff;
  --deep-teal: #114b5f;
  --coral: #db7f8e;
  --wine: #832161;
  --lavender: #b497d6;

  --text-main: #111827;
  --text-muted: #6b7280;
  --surface: #f9fafb;
  --border-subtle: #e5e7eb;

  --dark-bg: #020617;
  --dark-card: #020617;
}

/* ============================
   Global reset & base
   ============================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left,
    var(--bg-cyan) 0,
    var(--lavender) 40%,
    var(--coral) 90%);
}

/* Generic layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(248, 250, 252, 0.94);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.section-header {
  max-width: 620px;
}

.section-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.section-title {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.section-sub {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

/* ============================
   Header / nav
   ============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.9)
  );
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
}

/* brand */

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--deep-teal);
  color: #ecfeff;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.brand-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* nav */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.86rem;
}

.site-nav a {
  text-decoration: none;
  color: #4b5563;
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep-teal), var(--wine));
  transition: width 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* mobile nav button */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.25rem;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

/* ============================
   Hero
   ============================ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Put the two columns (text + photo) on the container */
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-content-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.hero-text {
  max-width: 640px;
}

.hero-kicker {
  font-size: 1.0 rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.18;
  max-width: 32rem;   /* controls how many lines */
}


.hero-sub {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: #374151;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.tag-chip {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.9);
  color: #374151;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-bio {
  margin-top: 0.7rem;
  font-size: 1.5 rem;     /* increase size */
  color: var(--text-main);
  text-align: center;     /* center the text */
  font-weight: 500;       /* optional: makes it look cleaner */
}

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-title {
    font-size: 1.9rem;
    max-width: 100%;
  }
}
/* Buttons */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-teal), var(--wine));
  color: #f9fafb;
}

.btn-ghost {
  background: rgba(249, 250, 251, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
  color: var(--text-main);
}

.btn-primary.full-width {
  width: 100%;
}

/* hero photo card */

.hero-photo-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.hero-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-bio {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================
   Projects
   ============================ */

/* Grid (featured + normal inside SAME grid) */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

/* Card */
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  position: relative;
}

/* Visual / image area */
.project-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

/* Overlay text on image */
.proj-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f9fafb;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72), transparent 55%);
}

.proj-label {
  margin: 0 0 0.15rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.proj-caption {
  margin: 0;
  font-size: 0.8rem;
}

/* Content */
.project-body {
  padding: 1rem 1.1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.project-title {
  margin: 0;
  font-size: 1.02rem;
}

.project-tagline {
  margin: 0;
  font-size: 0.86rem;
  color: #4b5563;
}

/* Bullets (keeps cards similar height) */
.project-points {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #374151;

  /* clamp effect */
  max-height: 4.4em; /* ~3 lines */
  overflow: hidden;
}

.project-points li + li {
  margin-top: 0.15rem;
}

/* Badges row */
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
}

/* Optional link */
.project-link {
  font-size: 0.8rem;
  color: var(--deep-teal);
  text-decoration: none;
}

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

/* ----------------------------
   Background image classes
---------------------------- */
.proj-fairlens,
.proj-moma,
.proj-audio,
.proj-credit,
.proj-agent {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.proj-fairlens { background-image: url("assets/fairlens.png"); }
.proj-moma     { background-image: url("assets/moma.png"); }
.proj-audio    { background-image: url("assets/audio.png"); }
.proj-credit   { background-image: url("assets/creditmate.png"); }

/* Featured image with soft dark gradient */
.proj-agent {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.12) 60%),
    url("assets/Digital.png");
}

/* ----------------------------
   Featured card behavior
   (bigger but still 2-column)
---------------------------- */
.project-card.project-featured {
  grid-row: span 2; /* taller */
}

.project-card.project-featured .project-visual {
  height: 220px;
}

.project-card.project-featured .project-title {
  font-size: 1.18rem;
}

/* ----------------------------
   Mobile
---------------------------- */
@media (max-width: 1000px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card.project-featured {
    grid-row: auto; /* reset */
  }

  .project-card.project-featured .project-visual {
    height: 190px;
  }
}


/* ============================
   Experience
   ============================ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid #e5e7eb;
}

.timeline-role {
  margin: 0;
  font-size: 1rem;
}

.timeline-meta {
  margin: 0.1rem 0 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.timeline-item ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #374151;
}

.timeline-item li + li {
  margin-top: 0.15rem;
}

/* ============================
   Experience - upgrade
   ============================ */

:root {
  --timeline-line: linear-gradient(
    180deg,
    rgba(17, 75, 95, 0.35),
    rgba(131, 33, 97, 0.35)
  );
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(229, 231, 235, 0.9);
  --dot-border: rgba(131, 33, 97, 0.55);
  --hover-border: rgba(180, 151, 214, 0.7);
  --chip-bg: rgba(209, 250, 255, 0.55);
  --chip-border: rgba(17, 75, 95, 0.18);
  --chip-text: rgba(17, 75, 95, 0.95);
  --shadow-sm: 0 14px 34px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 1.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: var(--timeline-line);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease,
              box-shadow 160ms ease,
              border-color 160ms ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--dot-border);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hover-border);
}

.timeline-role {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.25;
}

.timeline-meta {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.exp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.2rem 0 0.75rem;
}

.exp-chip {
  font-size: 0.75rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  color: var(--chip-text);
}

.timeline-item ul {
  margin: 0;
  padding-left: 1.05rem;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.45;
}

.timeline-item li + li {
  margin-top: 0.25rem;
}

/* ============================
   SKILLS – HAND SPLIT LAYOUT
============================ */

/* ============================
   SKILLS – HAND SPLIT LAYOUT (BASE)
============================ */

.skills-hand-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.6rem;
}

.skills-hand-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Technical | hands | Non-Technical */
  align-items: center;
  column-gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.skills-heading-big{
  margin: 0;
  font-size: 2.1rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: #114b5f;
}

.skills-hand-top .skills-heading-big:last-child{
  text-align: right;
  color: #832161; /* slight contrast */
}

/* hands center */
.hands-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 240px;
}

.hand{
  display: block;
  width: 120px;
  height: auto;
}

/* impact lines between hands */
.impact-lines{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.impact-lines span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 75, 95, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

.impact-lines span:nth-child(2){ animation-delay: .15s; }
.impact-lines span:nth-child(3){ animation-delay: .3s; }

@keyframes pulse{
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

/* two columns */
.skills-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 0.6rem;
}

.skills-col{
  min-width: 0;
}

/* hands area (from AND.css, slightly tweaked) */
.hands-wrapper {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hand {
  width: 260px;
  max-width: 40%;
  transition: transform 1.2s ease-out;
}

/* start far apart */
.hand-left {
  margin-right: -8px;
  transform: translateX(-260px);
}

.hand-right {
  margin-left: -8px;
  transform: translateX(260px);
}

/* when JS adds .animate – slide together */
.skills-hand-card.animate .hand-left {
  transform: translateX(0);
}

.skills-hand-card.animate .hand-right {
  transform: translateX(0);
}

/* little impact lines above hands */
.impact-lines {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.impact-lines span {
  width: 4px;
  height: 26px;
  background: #60a5fa;
  border-radius: 999px;
  opacity: 0;
  transform: scaleY(0.2) translateY(8px);
  transform-origin: bottom;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

/* when JS adds .show-impact */
.skills-hand-card.show-impact .impact-lines {
  opacity: 1;
}

.skills-hand-card.show-impact .impact-lines span:nth-child(1) {
  transform: rotate(-12deg) scaleY(1) translateY(0);
  opacity: 1;
}
.skills-hand-card.show-impact .impact-lines span:nth-child(2) {
  transform: rotate(0deg) scaleY(1.1) translateY(-3px);
  opacity: 1;
}
.skills-hand-card.show-impact .impact-lines span:nth-child(3) {
  transform: rotate(12deg) scaleY(1) translateY(0);
  opacity: 1;
}
/* ===================================
   Mobile fix for Skills + Hands card
   =================================== */
/* ============================
   FIX MOBILE LAYOUT FOR SKILLS
=========================== */
@media (max-width: 768px) {
  
  .skills-hand-top {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 1rem;
  }

  .skills-heading-big {
    font-size: 1.9rem;
  }

  .hands-wrapper {
    height: 180px;
    transform: scale(0.85);
    margin: 0 auto;
  }

  .hand {
    width: 180px;
    max-width: 50%;
  }

  .skills-columns {
    grid-template-columns: 1fr; /* stack left + right */
    row-gap: 2.5rem;
  }

  .skills-col {
    padding: 0 0.5rem;
  }
}



/*---------------------------*/
.skills-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #832161;
  margin: 0 0 0.25rem;
}

.skills-col-sub {
  margin: 0 0 0.9rem;
  color: #4b5563;
}

.skills-group {
  margin-bottom: 1.3rem;
}

.skills-group h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #114b5f;
  margin: 0 0 0.35rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pill-row span {
  background: #d1faff;
  color: #114b5f;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(17, 75, 95, 0.18);
  transition: background 0.18s ease, color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
}

.pill-row span:hover {
  background: #b497d6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(131, 33, 97, 0.25);
}

/* responsive */
@media (max-width: 900px) {
  .skills-hand-top {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    text-align: center;
  }

  .skills-heading-big {
    font-size: 2rem;
  }

  .skills-columns {
    grid-template-columns: 1fr;
  }
}
/* Certifications */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.cert-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.cert-card.featured {
  border-left: 4px solid var(--wine);
}

.cert-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.cert-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.35;
}

.cert-meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.cert-skills {
  font-size: 0.78rem;
  color: #374151;
  margin-bottom: 0.6rem;
}

.cert-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--deep-teal);
  text-decoration: none;
}

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


/* ============================
   Contact
   ============================ */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: #374151;
}

.contact-info a {
  color: var(--deep-teal);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-form label {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 9px;
  border: 1px solid #d1d5db;
  padding: 0.45rem 0.6rem;
  font-family: inherit;
  font-size: 0.88rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(17, 75, 95, 0.35);
  border-color: var(--deep-teal);
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  border-color: rgba(148, 163, 184, 0.7);
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================
   Footer
   ============================ */

.site-footer {
  padding: 1.2rem 0 1.8rem;
  background: rgba(15, 23, 42, 0.9);
  color: #d1d5db;
  font-size: 0.8rem;
  text-align: center;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    max-width: 360px;
    justify-self: center;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 52px;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
    flex-direction: column;
    gap: 0.6rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

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

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

/* ============================
   Small enhancements
   ============================ */

/* Project cards subtle glow */
.project-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left,
    rgba(209, 250, 255, 0.18),
    transparent 55%);
  opacity: 0;
  transform: translate3d(-10%, -10%, 0);
  transition: opacity 180ms ease-out, transform 220ms ease-out;
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
