/* style.css */
:root {
  --bg0: #070B1A;
  --bg1: #070A18;
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .65);
  --muted2: rgba(234, 240, 255, .45);

  --accent: #FF7A2F;
  --accent2: #FF6A1F;

  --card: rgba(255, 255, 255, .03);
  --stroke: rgba(255, 255, 255, .08);

  --shadow: 0 30px 80px rgba(0, 0, 0, .5);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100vh; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255, 122, 47, .08), transparent 60%),
    radial-gradient(900px 600px at 70% 70%, rgba(255, 122, 47, .06), transparent 60%),
    linear-gradient(180deg, #050817 0%, #050717 40%, #040613 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === NEW ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 14px 40px rgba(255,122,47,.25); }
  50% { box-shadow: 0 14px 60px rgba(255,122,47,.6); }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* Global Layout */
.container {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

/* --- HEADER & NAV --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5, 7, 20, .75), rgba(5, 7, 20, .35));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: transform 0.4s ease-in-out; /* Smooth slide animation */
}

/* Smart Hidden Header Class */
.header--hidden {
  transform: translateY(-100%);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand__mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, .5), transparent 70%),
    conic-gradient(from 220deg, var(--accent), #ffd09f, var(--accent));
  animation: pulseGlow 3s infinite;
}

.brand__text {
  letter-spacing: .12em;
  font-weight: 600;
  font-size: 12px;
  opacity: .95;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 5px auto;
  background: rgba(255, 255, 255, .85);
  border-radius: 999px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  color: rgba(234, 240, 255, .8);
  transition: .25s ease;
}

.nav__link:hover { color: #fff; }
.nav__link--active { color: #fff; font-weight: 600; }

.nav__dropdown { position: relative; }
.nav__dropbtn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: rgba(234, 240, 255, .8);
  font-size: 14px;
}

.chev { opacity: .7; margin-left: 6px; }

.nav__dropmenu {
  position: absolute;
  top: 38px;
  right: 0;
  min-width: 160px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(8, 12, 28, .9);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  display: none;
}

.nav__dropmenu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(234, 240, 255, .85);
  font-size: 14px;
}

.nav__dropmenu a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.nav__dropdown:hover .nav__dropmenu { display: block; }

/* Buttons with Shine Effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .3s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.5s ease;
}

.btn:hover::after { left: 100%; }

.btn--pill { border-radius: 999px; }
.btn--primary, .btn--accent {
  background: var(--accent);
  color: #0b0f22;
  box-shadow: 0 10px 30px rgba(255, 122, 47, .22);
}

.btn--primary:hover, .btn--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 122, 47, .4);
}

.nav__cta { margin-left: 18px; }

/* Page Title */
.page { padding-bottom: 80px; }
.page-title {
  text-align: center;
  padding: 58px 0 10px;
}
.page-title h1 {
  margin: 0;
  font-size: 56px;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.crumbs {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(234, 240, 255, .7);
}
.crumbs .sep { opacity: .6; padding: 0 8px; }
.crumbs .active { color: var(--accent); }

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding-top: 12px;
}

.about__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.portrait {
  width: 330px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 10px;
  background: rgba(255, 255, 255, .04);
  border: 4px solid var(--accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  position: relative;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.portrait:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 122, 47, 0.7);
}

/* Decorative Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}
.blob--a {
  width: 150px; height: 150px;
  background: rgba(255, 122, 47, .5);
  left: 20px; top: 130px;
  animation: float 6s ease-in-out infinite;
}
.blob--b {
  width: 100px; height: 100px;
  background: rgba(255, 122, 47, .4);
  left: 70px; top: 250px;
  animation: float 5s ease-in-out infinite reverse;
}
.blob--c {
  width: 95px; height: 95px;
  background: rgba(214, 154, 52, .7);
  right: 110px; bottom: 40px;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}

.about__content { position: relative; padding-top: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid rgba(255, 122, 47, .35);
  background: rgba(255, 122, 47, .06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 18px;
}

.about__content h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.lead {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  max-width: 520px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  padding: 14px 0 24px;
}

.info .label {
  display: block;
  font-size: 11px;
  color: rgba(234, 240, 255, .55);
  margin-bottom: 6px;
}

.info .value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(234, 240, 255, .92);
}

.actions { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 8px; }

/* Skills Section */
.skills-section {
  padding: 90px 20px;
  background: #050817;
  color: #eaf0ff;
}

.skills-container { max-width: 1200px; margin: auto; text-align: center; }
.skills-header h2 { font-size: 42px; margin-bottom: 12px; }
.skills-header h2 span { color: #ff7a2f; }
.skills-header p {
  color: rgba(234, 240, 255, 0.65);
  max-width: 600px;
  margin: auto;
  font-size: 14px;
  line-height: 1.8;
}

.skills-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: all 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 122, 47, 0.3);
}

.skill-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 122, 47, 0.12);
  color: #ff7a2f;
  font-size: 24px;
  transition: 0.3s;
}

.skill-card:hover .skill-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--accent);
  color: #000;
}

.skill-card h3 { font-size: 15px; margin-bottom: 16px; }

.progress {
  width: 100%; height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff7a2f, #ffa56b);
  border-radius: 999px;
}

/* Projects Section */
.projects-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, rgba(255, 122, 47, .08), transparent 60%), #050817;
  color: #eaf0ff;
}

.projects-container { max-width: 1200px; margin: auto; text-align: center; }
.projects-header h2 { font-size: 44px; margin: 0 0 10px; }
.projects-header h2 span { color: #ff7a2f; }
.projects-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 14px;
  color: rgba(234, 240, 255, .65);
  line-height: 1.8;
}

/* Filter Pills */
.projects-filters {
  margin-top: 26px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .75);
  cursor: pointer;
  transition: .3s ease;
  font-weight: 600;
  font-size: 13px;
}

.filter-btn:hover, .filter-btn.is-active {
  background: var(--accent);
  color: #0b0f22;
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(255, 122, 47, .18);
}

/* Grid layout with flex/grid fixes */
.projects-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
  transition: 0.5s ease;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  transition: all .3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 122, 47, 0.2);
  border-color: rgba(255, 122, 47, 0.4);
}

/* Hide filtered items strictly */
.project-card.is-hidden { display: none !important; }

/* Video Wrappers */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-meta { padding: 16px 18px 18px; text-align: left; }
.project-meta .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #ff7a2f;
  margin-bottom: 8px;
}
.project-meta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(234, 240, 255, .92);
}

/* Graphics Design Card */
.project-card--design { padding: 0; background: rgba(255, 255, 255, .03); }
.project-card--design img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: 0.5s ease;
}
.project-card--design:hover img { transform: scale(1.08); }


/* Services Section */
.services-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, rgba(255, 122, 47, .08), transparent 60%), #050817;
  color: #eaf0ff;
}

.services-container { max-width: 1200px; margin: auto; text-align: center; }
.services-header h2 { font-size: 44px; margin-bottom: 12px; }
.services-header h2 span { color: #ff7a2f; }
.services-header p {
  max-width: 680px; margin: 0 auto;
  font-size: 14px;
  color: rgba(234, 240, 255, .65);
  line-height: 1.8;
}

.services-slider {
  margin-top: 55px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.nav-btn {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(234, 240, 255, .75);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}

.nav-btn:hover {
  background: rgba(255, 122, 47, .10);
  border-color: rgba(255, 122, 47, .35);
  color: #fff;
}

.nav-btn.next {
  background: #ff7a2f;
  border-color: transparent;
  color: #0b0f22;
  font-weight: 700;
}

.nav-btn.next:hover { filter: brightness(1.05); }

.services-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 6px;
}

.service-card {
  flex: 0 0 calc(33.333% - 16px);
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .55);
  background: #0b1030;
}

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.service-card:hover img { transform: scale(1.1); }

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.8));
}

.service-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.service-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 10px 25px rgba(0, 0, 0, .5);
  z-index: 2;
}

.service-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ff7a2f;
  color: #0b0f22;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(255, 122, 47, .22);
  transition: .3s ease;
}

.service-card:hover .service-arrow { transform: scale(1.1) rotate(45deg); }

.services-dots {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .25);
  transition: .25s ease;
}

.dot.is-active { width: 24px; background: #ff7a2f; }

/* ====== MODAL STYLES (Fixes the white box) ====== */
body.modal-open { overflow: hidden; }

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.service-modal.is-open { display: block; }

.service-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(6px);
}

.service-modal__panel {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 70px auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(8, 12, 28, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 420px;
}

.service-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .9);
  cursor: pointer;
  z-index: 3;
}

.service-modal__close:hover {
  background: rgba(255, 122, 47, .10);
  border-color: rgba(255, 122, 47, .35);
}

.service-modal__media { position: relative; background: #0b1030; }
.service-modal__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55));
  pointer-events: none;
}
.service-modal__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-modal__body { padding: 28px 26px; text-align: left; }
.service-modal__title { margin: 0 0 12px; font-size: 26px; letter-spacing: -.02em; }
.service-modal__text {
  margin: 0 0 18px;
  color: rgba(234, 240, 255, .65);
  font-size: 14px; line-height: 1.85;
}

.service-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

.service-modal__btn {
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700;
  font-size: 14px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}

.service-modal__btn--primary {
  background: #ff7a2f; color: #0b0f22;
  box-shadow: 0 18px 44px rgba(255, 122, 47, .22);
}
.service-modal__btn--primary:hover { filter: brightness(1.05); }

.service-modal__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 122, 47, .45);
  color: rgba(255, 122, 47, .95);
}
.service-modal__btn--ghost:hover { background: rgba(255, 122, 47, .08); }


/* Footer Section */
.footer {
  background: #050817; 
  padding: 70px 20px 20px;
  color: #eaf0ff;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 { font-size: 22px; margin-bottom: 15px; color: #ff7a2f; }
.footer h4 { font-size: 16px; margin-bottom: 15px; color: #ffffff; }
.footer p { font-size: 14px; color: rgba(234, 240, 255, .65); line-height: 1.7; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; color: rgba(234, 240, 255, .65); }
.footer ul li a { text-decoration: none; color: rgba(234, 240, 255, .65); transition: 0.3s ease; }
.footer ul li a:hover { color: #ff7a2f; padding-left: 5px; }

.footer-social { margin-top: 15px; display: flex; gap: 12px; }
.footer-social a {
  font-size: 14px; text-decoration: none;
  color: rgba(234, 240, 255, .75); transition: 0.3s ease;
}
.footer-social a:hover { color: #ff7a2f; }

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-bottom p { font-size: 13px; color: rgba(234, 240, 255, .45); }


/* Responsive Styles */
@media (max-width: 980px) {
  .page-title h1 { font-size: 46px; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__visual { order: 2; min-height: 380px; }
  .about__content { order: 1; text-align: left; }
  .service-card { flex: 0 0 calc(50% - 12px); }
  .services-slider { grid-template-columns: 1fr; gap: 14px; }
  .nav-btn { justify-self: center; width: max-content; }
  .services-track { order: 1; }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    left: 16px; right: 16px; top: 92px;
    background: rgba(8, 12, 28, .92);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px; padding: 14px;
    display: none; flex-direction: column;
    align-items: stretch; gap: 8px;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__link, .nav__dropbtn {
    display: flex; justify-content: space-between;
    padding: 12px 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
  }
  .nav__dropdown:hover .nav__dropmenu { display: none; }
  .nav__dropmenu {
    position: static; display: none; margin-top: 8px;
    box-shadow: none; background: rgba(255, 255, 255, .02);
  }
  .nav__dropdown.is-open .nav__dropmenu { display: block; }
  .nav__cta { display: none; }
  .service-modal__panel { grid-template-columns: 1fr; margin: 24px auto; min-height: unset; }
  .service-modal__media { height: 260px; }
}

@media (max-width: 560px) {
  .page-title h1 { font-size: 38px; }
  .about__content h2 { font-size: 30px; }
  .portrait { width: 270px; }
  .blob--a { left: 0; }
  .blob--c { right: 40px; }
  .info-grid { grid-template-columns: 1fr; gap: 14px; }
  .projects-header h2 { font-size: 34px; }
  .services-header h2 { font-size: 34px; }
  .service-card { flex: 0 0 92%; }

  /* --- MIXED GRID FOR PROJECTS (Mobile) --- */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 14px; 
  }

  .project-card--video {
    grid-column: span 2; 
  }

  .project-card--design {
    grid-column: span 1;
  }

  .project-meta { 
    padding: 14px 16px; 
  }
  .project-meta .tag { 
    font-size: 10px; 
    margin-bottom: 6px; 
  }
  .project-meta h3 { 
    font-size: 15px; 
  }
}@media (max-width: 560px) {
  .page-title h1 { font-size: 38px; }
  .about__content h2 { font-size: 30px; }
  .portrait { width: 270px; }
  .blob--a { left: 0; }
  .blob--c { right: 40px; }
  .info-grid { grid-template-columns: 1fr; gap: 14px; }
  .projects-header h2 { font-size: 34px; }
  .services-header h2 { font-size: 34px; }
  .service-card { flex: 0 0 92%; }

  /* --- FORCE 2 COLUMNS FOR SKILLS (Mobile) --- */
  .skills-grid {
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
    gap: 12px; /* Tighter gap for mobile */
  }
  
  /* Scale down the cards so they fit nicely side-by-side */
  .skill-card {
    padding: 20px 14px; 
  }
  .skill-icon {
    width: 44px; 
    height: 44px; 
    font-size: 20px; 
    margin-bottom: 12px;
  }
  .skill-card h3 {
    font-size: 12px; 
    margin-bottom: 12px;
  }

  /* --- MIXED GRID FOR PROJECTS (Mobile) --- */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 14px; 
  }

  .project-card--video {
    grid-column: span 2; 
  }

  .project-card--design {
    grid-column: span 1;
  }

  .project-meta { 
    padding: 14px 16px; 
  }
  .project-meta .tag { 
    font-size: 10px; 
    margin-bottom: 6px; 
  }
  .project-meta h3 { 
    font-size: 15px; 
  }
}
