/* ============================================================
   PHANIUX.COM — Portfolio Design System
   Senior UX Architect · Phanikrishna Vasireddy
   ============================================================ */

/* Image protection — no right-click save, no drag */
img {
  -webkit-user-drag: none; user-drag: none;
  -webkit-user-select: none; user-select: none;
  pointer-events: none; /* right-click lands on parent div, not the image */
}
/* Re-enable clicks for images inside anchor tags */
a img, button img { pointer-events: auto; }

/* Transparent overlay on image containers — right-click hits div, not img */
.about-photo-wrap,
.cs-img-wrap,
.ba-item {
  position: relative;
}
.about-photo-wrap::after,
.cs-img-wrap::after,
.ba-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: default;
  -webkit-user-select: none; user-select: none;
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* --- TOKENS ------------------------------------------------ */
:root {
  /* Colors */
  --bg:           #FFFFFF;
  --bg-alt:       #F8FAFC;
  --bg-card:      #FFFFFF;
  --navy:         #0F172A;
  --navy-2:       #1E293B;
  --navy-3:       #334155;
  --blue:         #2563EB;
  --blue-dark:    #1D4ED8;
  --blue-light:   #EFF6FF;
  --blue-mid:     #BFDBFE;
  --text:         #1E293B;
  --text-muted:   #64748B;
  --text-faint:   #94A3B8;
  --border:       #E2E8F0;
  --border-dark:  #CBD5E1;
  --green:        #059669;
  --green-light:  #D1FAE5;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Layout */
  --max-w:        1200px;
  --section-py:   100px;
  --card-r:       16px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:    0 20px 60px rgba(15,23,42,0.14), 0 8px 24px rgba(15,23,42,0.06);
  --shadow-blue:  0 8px 28px rgba(37,99,235,0.30);
}

/* --- LAYOUT ----------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); }

/* --- TYPOGRAPHY ------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; flex-shrink: 0; }

h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-family: var(--font);
  font-size: 0.9375rem; font-weight: 600; border: none;
  transition: all 0.2s ease; white-space: nowrap; cursor: pointer;
}
.btn-primary   { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-ghost     { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.38); }
.btn-outline   { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: 8px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- NAV -------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 72px; display: flex; align-items: center;
  padding: 0 32px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.0625rem; font-weight: 700; color: #fff;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.80); transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  font-size: 0.8125rem; font-weight: 600; color: var(--blue);
  border: 1.5px solid rgba(37,99,235,0.5); border-radius: 8px;
  padding: 8px 18px; transition: all 0.2s;
}
.nav-cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  z-index: 998;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 1.5rem; font-weight: 600; color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: #fff; }

/* --- HERO ------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  background-image:
    radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 120px 32px 100px;
}
.hero::after {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}

.hero-available {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; margin-bottom: 36px;
  background: rgba(5,150,105,0.12);
  border: 1px solid rgba(5,150,105,0.28);
  border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; color: #34D399;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--blue); }
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.03;
  letter-spacing: -0.045em; color: #fff;
  margin-bottom: 28px;
}

.hero-title-accent { color: var(--blue); display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.75; color: rgba(255,255,255,0.82);
  max-width: 640px; margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-fade 2s ease-in-out infinite;
}

/* --- STATS ------------------------------------------------ */
.stats {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  padding: 48px 40px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--navy); line-height: 1; margin-bottom: 10px;
}
.stat-num sup { font-size: 0.55em; vertical-align: super; letter-spacing: 0; color: var(--blue); }
.stat-desc { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); line-height: 1.4; }

/* --- ABOUT ----------------------------------------------- */
.about-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 72px; align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; border-radius: 20px;
  aspect-ratio: 4/5; object-fit: cover; object-position: top;
  background: var(--navy-2);
}
.about-yoe {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue); color: #fff;
  padding: 18px 22px; border-radius: 14px;
  font-weight: 800; font-size: 0.875rem; text-align: center;
  box-shadow: var(--shadow-blue); line-height: 1.2;
}
.about-yoe strong { display: block; font-size: 2rem; letter-spacing: -0.04em; }
.about-content h2 { color: var(--navy); margin-bottom: 24px; }
.about-content p { margin-bottom: 18px; }
.about-content p:last-of-type { margin-bottom: 36px; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- EXPERTISE ------------------------------------------- */
.section-header { margin-bottom: 60px; max-width: 600px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; }
.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.exp-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--card-r); padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-mid); }
.exp-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.exp-icon svg {
  width: 26px; height: 26px; stroke: var(--blue);
  fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.exp-card h3 { color: var(--navy); margin-bottom: 12px; }
.exp-card > p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 28px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 12px; border-radius: 100px;
}

/* --- TOOLS STRIP ----------------------------------------- */
.tools-strip { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tools-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 24px;
  text-align: center;
}
.tools-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tool-pill {
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px;
  transition: all 0.2s ease;
}
.tool-pill:hover { color: var(--blue); background: var(--blue-light); border-color: var(--blue-mid); }

/* --- WORK ------------------------------------------------- */
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.proj-card {
  background: var(--bg-card); border-radius: var(--card-r);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-visual {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px 24px;
}
.proj-visual-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.proj-visual-year {
  position: relative; z-index: 1;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.88); font-size: 0.625rem;
}
.proj-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.proj-client {
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px;
}
.proj-body h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.proj-body > p { font-size: 0.875rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.proj-tag {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-muted); background: var(--bg-alt);
  padding: 3px 10px; border-radius: 100px;
}
.proj-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: var(--blue);
  transition: gap 0.2s;
}
.proj-link:hover { gap: 10px; }
.proj-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* --- PROCESS --------------------------------------------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-connector {
  position: absolute; top: 27px; left: calc(12.5% + 28px);
  right: calc(12.5% + 28px); height: 1px;
  background: var(--border); z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 24px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; margin-bottom: 24px;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border);
}
.process-step h4 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; line-height: 1.65; }

/* --- CONTACT --------------------------------------------- */
.contact {
  background: var(--navy);
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info .eyebrow { color: var(--blue); }
.contact-info h2 { color: #fff; margin-bottom: 20px; }
.contact-info > p { color: rgba(255,255,255,0.85); margin-bottom: 44px; font-size: 1.0625rem; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; color: rgba(255,255,255,0.88);
  font-size: 0.9375rem; font-weight: 500;
  transition: all 0.2s;
}
.contact-channel:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.ch-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
}
.ch-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ch-text { display: flex; flex-direction: column; gap: 2px; }
.ch-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.ch-value { font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.88); }

.contact-form-wrap {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 44px;
}
.contact-form-wrap h3 { color: #fff; margin-bottom: 8px; }
.contact-form-wrap > p { color: rgba(255,255,255,0.78); font-size: 0.9375rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.88); }
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 13px 16px;
  color: #fff; font-family: var(--font); font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-group select option { background: #1E293B; color: #fff; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); background: rgba(255,255,255,0.07); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- FOOTER ---------------------------------------------- */
.footer { background: var(--navy-2); padding: 28px 32px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8125rem; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: rgba(255,255,255,0.38); font-size: 0.8125rem; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   HOW I APPROACH — Proof of Thinking Section
   ============================================================ */
.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 48px; border: 1px solid var(--border); border-radius: var(--card-r);
  overflow: hidden;
}
.approach-item {
  padding: 36px 28px; border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.approach-item:last-child { border-right: none; }
.approach-item:hover { background: var(--blue-light); }
.approach-num {
  font-size: 0.625rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
.approach-item h4 { color: var(--navy); margin-bottom: 10px; font-size: 0.9375rem; }
.approach-item p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Stronger proj-outcome — outcome now sits ABOVE the title */
.proj-outcome {
  font-size: 0.875rem; font-weight: 700; color: var(--navy);
  background: var(--blue-light); border: 1.5px solid var(--blue-mid);
  padding: 10px 14px; border-radius: 8px; margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.proj-outcome::before { content: '↑'; flex-shrink: 0; color: var(--blue); font-weight: 900; font-size: 0.875rem; }

/* ============================================================
   PROJECT PAGE
   ============================================================ */
.proj-page-hero {
  padding: 152px 32px 80px;
  background: var(--navy);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; position: relative; overflow: hidden;
}
.proj-page-hero::after {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.proj-page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.72);
  margin-bottom: 36px; transition: color 0.2s;
}
.back-link:hover { color: rgba(255,255,255,0.85); }
.back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.proj-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.proj-hero-tag {
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.28); padding: 5px 14px; border-radius: 100px;
}
.proj-page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800;
  letter-spacing: -0.035em; color: #fff; margin-bottom: 24px; line-height: 1.1;
}
.proj-hero-meta {
  display: flex; flex-wrap: wrap; gap: 40px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.meta-item {}
.meta-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.meta-val { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.92); }

/* Project body */
.proj-body-wrap { max-width: 800px; margin: 0 auto; padding: 80px 32px 40px; }
.cs-section { margin-bottom: 72px; }
.cs-section h2 {
  font-size: 1.375rem; font-weight: 700; color: var(--navy);
  padding-bottom: 16px; border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.cs-section p { font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.cs-section ul { display: flex; flex-direction: column; gap: 12px; }
.cs-section li {
  padding-left: 22px; position: relative;
  font-size: 0.9375rem; line-height: 1.7; color: var(--text-muted);
}
.cs-section li::before { content: '→'; position: absolute; left: 0; color: var(--blue); top: 0; font-size: 0.875rem; }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.impact-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 20px; text-align: center;
}
.impact-card.blue { background: var(--blue-light); border-color: var(--blue-mid); }
.impact-num { font-size: 2.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; display: block; margin-bottom: 6px; line-height: 1; }
.impact-num.accent { color: var(--blue); }
.impact-desc { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); line-height: 1.4; }

.callout-box {
  background: var(--blue-light); border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0; padding: 22px 28px; margin: 28px 0;
}
.callout-box p { color: var(--navy-2); font-weight: 500; margin: 0; font-size: 0.9375rem; }

.nda-note {
  background: var(--bg-alt); border: 1px dashed var(--border-dark);
  border-radius: 12px; padding: 18px 22px; margin: 28px 0;
  display: flex; align-items: flex-start; gap: 12px;
}
.nda-note svg { width: 18px; height: 18px; stroke: var(--text-faint); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.nda-note p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.deliverable-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.deliverable-item h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.9375rem; }
.deliverable-item p { font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Project navigation */
.proj-page-nav {
  border-top: 1px solid var(--border); padding: 48px 32px;
  max-width: 800px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.pnav-link { display: flex; flex-direction: column; gap: 6px; }
.pnav-link.right { text-align: right; }
.pnav-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.pnav-title { font-size: 1rem; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.pnav-link:hover .pnav-title { color: var(--blue); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   HERO — COMPACT
   ============================================================ */
/* Override min-height to 80vh */
.hero {
  min-height: 80vh;
  padding: 104px 32px 72px;
}

/* ============================================================
   PROCESS — 2×2 CARD GRID
   ============================================================ */
.process-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.p2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.p2-card:hover { background: rgba(255,255,255,0.065); border-color: rgba(37,99,235,0.35); }
.p2-num {
  position: absolute; top: -12px; right: 24px;
  font-size: 7rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.06em; color: rgba(255,255,255,0.04);
  user-select: none; pointer-events: none;
}
.p2-icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: rgba(37,99,235,0.18); border: 1px solid rgba(37,99,235,0.28);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.p2-icon svg { width: 24px; height: 24px; stroke: #93C5FD; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.p2-card h4 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.p2-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.p2-card li { font-size: 0.875rem; color: rgba(255,255,255,0.8); padding-left: 16px; position: relative; line-height: 1.5; }
.p2-card li::before { content: '—'; position: absolute; left: 0; color: rgba(37,99,235,0.7); font-size: 0.75rem; top: 2px; }
.p2-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.p2-pill { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 100px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.22); color: #93C5FD; }

/* ============================================================
   PROJECT CARDS — JOURNEY FORMAT
   ============================================================ */
.proj-challenge {
  font-size: 0.9rem; font-style: italic; color: var(--text-muted);
  border-left: 3px solid var(--blue-mid); padding-left: 14px;
  margin-bottom: 18px; line-height: 1.6;
}
.proj-wins { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.proj-win {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45;
}
.proj-win-dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.proj-win-dot svg { width: 10px; height: 10px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.proj-win strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   ABOUT — PHOTO FALLBACK
   ============================================================ */
.about-photo-mono {
  width: 100%; border-radius: 20px; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  position: relative;
}
.about-photo-mono .mono-initials {
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.1);
  letter-spacing: -0.06em; line-height: 1;
}
.about-photo-mono .mono-hint {
  font-size: 0.6875rem; font-weight: 500; color: rgba(255,255,255,0.2);
  text-align: center; line-height: 1.5; padding: 0 16px;
  border: 1px dashed rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 14px;
}

/* ============================================================
   CONTACT — DROP ME A LINE
   ============================================================ */
.contact-cta-group { display: flex; flex-direction: column; gap: 16px; }
.contact-cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 24px; background: var(--blue); color: #fff;
  border-radius: 14px; font-size: 1rem; font-weight: 700;
  transition: all 0.25s ease; text-decoration: none;
}
.contact-cta-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.contact-cta-primary svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-cta-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.82);
  border-radius: 14px; font-size: 0.9375rem; font-weight: 500;
  transition: all 0.2s ease;
}
.contact-cta-secondary:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }
.contact-cta-secondary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; flex-shrink: 0; opacity: 0.7; }
.contact-availability {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
  font-size: 0.8125rem; color: rgba(255,255,255,0.4); font-weight: 500;
}
.contact-availability-dot { width: 7px; height: 7px; background: #34D399; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease infinite; }

/* ============================================================
   TRUST / CREDIBILITY STRIP
   ============================================================ */
.trust-strip { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px; text-align: center; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text-muted); background: var(--bg-alt);
  border: 1px solid var(--border); padding: 9px 16px; border-radius: 10px;
  transition: all 0.2s ease;
}
.trust-badge:hover { color: var(--navy); border-color: var(--border-dark); background: var(--bg-card); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.trust-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PROJ CARD — ORG BADGE + OUTCOME LINE
   ============================================================ */

/* Subtle bottom-only overlay on all proj-visual elements (added via ::after) */
.proj-visual::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.proj-visual-bg, .proj-visual-org, .proj-visual-year { z-index: 2; }

/* Small frosted-glass monochrome org badge — top-left */
.proj-visual-org {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 0.5rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 5px;
  max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.proj-outcome {
  font-size: 0.8125rem; font-weight: 700; color: var(--blue);
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  padding: 9px 14px; border-radius: 8px; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.proj-outcome::before { content: '→'; flex-shrink: 0; margin-top: 0; }

/* ============================================================
   PROCESS — BUSINESS VALUE LINE
   ============================================================ */
.p2-why {
  font-size: 0.75rem; font-weight: 700; color: #93C5FD;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.18);
  padding: 6px 12px; border-radius: 6px; margin-bottom: 16px; display: inline-block;
}

/* ============================================================
   SECTION VISUAL ACCENTS
   ============================================================ */
/* Decorative section number */
.section-deco-num {
  font-size: 8rem; font-weight: 900; color: var(--border);
  line-height: 1; letter-spacing: -0.06em; margin-bottom: -24px;
  display: block; user-select: none;
}

/* Angled section separator */
.section-angle {
  height: 60px; background: var(--bg-alt);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
  margin-bottom: -1px;
}
.section-angle-rev {
  height: 60px; background: var(--bg-alt);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ============================================================
   CASE STUDY VISUAL COMPONENTS
   ============================================================ */

/* Full-width image */
.cs-img-wrap { margin: 32px 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); }
.cs-img-wrap img { width: 100%; height: auto; display: block; }
.cs-img-caption { text-align: center; font-size: 0.8125rem; color: var(--text-faint); padding: 10px 16px 14px; background: var(--bg-alt); }

/* Before / After */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.ba-item { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.ba-label {
  display: block; padding: 10px 16px; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ba-label.before { background: #FEF2F2; color: #DC2626; }
.ba-label.after  { background: #F0FDF4; color: #16A34A; }
.ba-item img { width: 100%; height: auto; display: block; }
.ba-item .ba-text { padding: 14px 16px; background: var(--bg-alt); }
.ba-item .ba-text p { font-size: 0.875rem; margin: 0; }

/* Role grid (2×N) */
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.role-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.role-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.role-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.role-card h4 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 4px; }
.role-card p { font-size: 0.8125rem; margin: 0; line-height: 1.55; }

/* Visual process steps (horizontal) */
.cs-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 28px 0; position: relative; }
.cs-process::before { content: ''; position: absolute; top: 20px; left: calc(12% + 20px); right: calc(12% + 20px); height: 1px; background: var(--border); }
.cs-step { padding: 0 8px; position: relative; z-index: 1; }
.cs-step-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; margin-bottom: 14px; border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--blue); }
.cs-step h5 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.cs-step p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Insight cards (2-col) */
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.insight-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.insight-label { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; display: block; }
.insight-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.9375rem; }
.insight-card p { font-size: 0.875rem; margin: 0; line-height: 1.55; }

/* SVG Wireframe mockup (placeholder for no-image projects) */
.wireframe-mock {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; margin: 32px 0; min-height: 280px;
  display: flex; flex-direction: column; gap: 12px;
}
.wf-bar { height: 10px; border-radius: 6px; background: var(--border); }
.wf-bar.short  { width: 40%; }
.wf-bar.medium { width: 65%; }
.wf-bar.long   { width: 85%; }
.wf-bar.accent { background: var(--blue-mid); width: 30%; }
.wf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.wf-card { height: 80px; background: var(--border); border-radius: 8px; }
.wf-card.blue { background: var(--blue-light); }
.wf-nav { display: flex; gap: 8px; margin-bottom: 8px; }
.wf-nav span { height: 8px; width: 48px; background: var(--border); border-radius: 4px; }
.wf-nav span.active { background: var(--blue-mid); }

/* Design artifact (SVG diagram representation) */
.artifact-card {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--blue-light) 100%);
  border: 1px solid var(--blue-mid); border-radius: 16px; padding: 32px;
  margin: 28px 0; display: flex; align-items: center; gap: 32px;
}
.artifact-icon { width: 64px; height: 64px; flex-shrink: 0; }
.artifact-icon svg { width: 64px; height: 64px; }
.artifact-text h4 { color: var(--navy); margin-bottom: 6px; }
.artifact-text p { font-size: 0.9375rem; margin: 0; }

/* Accessibility badge */
.wcag-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: 12px; padding: 14px 20px; margin-top: 16px;
}
.wcag-badge-icon { width: 36px; height: 36px; background: #16A34A; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 0.75rem; flex-shrink: 0; }
.wcag-badge-text strong { display: block; color: #15803D; font-size: 0.9375rem; }
.wcag-badge-text span { color: #16A34A; font-size: 0.8125rem; }

/* Secondary work grid */
.secondary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.secondary-card:hover .secondary-visual { transform: none; }
.secondary-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
a.secondary-card { color: inherit; text-decoration: none; display: block; }
.secondary-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.secondary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.secondary-visual { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.secondary-visual-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 16px 16px; }
.secondary-body { padding: 18px; }
.secondary-body .proj-client { font-size: 0.625rem; margin-bottom: 5px; }
.secondary-body h3 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.secondary-body p { font-size: 0.8125rem; line-height: 1.55; margin-bottom: 12px; }
.secondary-badge { font-size: 0.6875rem; font-weight: 700; color: var(--text-faint); background: var(--bg-alt); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; display: inline-block; }

/* University projects section header */
.section-divider { border: none; border-top: 1px dashed var(--border); margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  /* 5-col stats → 3 cols on wide tablet */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .work-grid         { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-inner     { grid-template-columns: 1fr; gap: 56px; }
  .impact-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-inner       { grid-template-columns: 240px 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-process { grid-template-columns: repeat(2, 1fr); }
  .cs-process::before { display: none; }
  .process-2x2 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item:nth-child(2) { border-right: none; }
  .approach-item:nth-child(3) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
  .secondary-grid { grid-template-columns: 1fr 1fr; }
  .before-after   { grid-template-columns: 1fr; }
  .role-grid      { grid-template-columns: 1fr; }
  .insight-grid   { grid-template-columns: 1fr; }
  .cs-process     { grid-template-columns: 1fr 1fr; }
  .artifact-card  { flex-direction: column; gap: 16px; }
  .about-inner    { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 220px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .work-grid     { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .contact-form-wrap { padding: 28px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; gap: 12px; text-align: center; }
  .proj-body-wrap { padding: 56px 20px 32px; }
  .proj-page-nav { flex-direction: column; gap: 28px; align-items: flex-start; padding: 40px 20px; }
  .pnav-link.right { text-align: left; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .work-header   { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .stat-item     { padding: 28px 16px; border-right: 1px solid var(--border) !important; border-top: none !important; }
  .stat-item:nth-child(even) { border-right: none !important; }
  .stat-item:nth-child(n+3)  { border-top: 1px solid var(--border) !important; }
  .stat-num      { font-size: 2rem; }
  .hero-actions  { flex-direction: column; width: 100%; }
  .btn           { width: 100%; }
  .impact-grid   { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .hero-title    { font-size: 2.75rem; }
  .proj-hero-meta { gap: 24px; }
}
