/* ============================================================
   Ashish Yadav Portfolio — v3 Static
   ============================================================ */

/* ── Tokens ── */
:root {
  --bg:        #F6F5F1;
  --bg-2:      #ECEAE5;
  --bg-card:   #FFFFFF;
  --hero-tint: #E6EAFF;
  --text:      #0E0E0E;
  --text-2:    #585858;
  --text-3:    #A0A0A0;
  --border:    rgba(0,0,0,0.07);
  --border-2:  rgba(0,0,0,0.13);
  --cs-dark:   #0C2D2B;
  --cs-blue:   #D4EBF9;
  --cs-peach:  #F2ECE5;
  --cs-sage:   #D3E9CC;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:'Lora', Georgia, serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1080px;
}

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

/* ── Hero lavender gradient (fixed wash) ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60vh;
  background: linear-gradient(180deg, var(--hero-tint) 0%, rgba(246,245,241,0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.45; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[target="_blank"]::after { content: ' ↗'; font-size: 11px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 124px 40px 80px;
  position: relative;
  --hero-mx: 35%;
  --hero-my: 30%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 55% at var(--hero-mx) var(--hero-my),
    rgba(168,180,255,0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* ── Headline ── */
.hero-headline {
  font-size: clamp(30px, 5.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.hero-word.in { opacity: 1; transform: translateY(0); }

/* Name chip */
.name-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
  padding: 3px 11px 5px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.name-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: name-shimmer 5s ease-in-out infinite 2s;
}
@keyframes name-shimmer {
  0%  { left: -100%; }
  30% { left: 160%; }
  100%{ left: 160%; }
}
.name-cursor {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--bg);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 1px;
  animation: cursor-blink 1.1s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ── Pills ── */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 8px 17px;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s, border-color 0.16s,
              transform 0.22s var(--ease-spring), box-shadow 0.16s;
}
.pill:hover {
  background: var(--text);
  color: var(--bg-card);
  border-color: var(--text);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.pill.active {
  background: var(--text);
  color: var(--bg-card);
  border-color: var(--text);
}
.pill--link { text-decoration: none; }

.pill-answer {
  display: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-2);
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 4px;
  animation: fade-slide-down 0.28s var(--ease-out) both;
}
.pill-answer.visible { display: block; }

/* ── Ask bar ── */
.ask-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
.ask-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 10px 12px 10px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ask-input-wrap:focus-within {
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.ask-icon { font-size: 13px; color: var(--text-3); flex-shrink: 0; }
#ask-input {
  flex: 1;
  border: none;
  background: none;
  font: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
}
#ask-input::placeholder { color: var(--text-3); }
.ask-submit {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-card);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-spring), opacity 0.15s;
}
.ask-submit:hover { transform: scale(1.12); }
.ask-hint { font-size: 11px; color: var(--text-3); padding-left: 20px; }
.ask-answer {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  animation: fade-slide-down 0.28s var(--ease-out) both;
}
.ask-answer.typing::after {
  content: '|';
  color: var(--text-3);
  animation: cursor-blink 0.8s step-end infinite;
  margin-left: 1px;
}

/* ── Shared ── */
@keyframes fade-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.section-line {
  height: 1px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.cs-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.cs-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.cs-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-2);
  margin-bottom: 22px;
}
.cs-metric {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 26px;
}
.cs-metric-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}
.cs-metric-label { font-size: 13px; color: var(--text-3); }
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 9px 18px;
  transition: background 0.16s, color 0.16s, transform 0.22s var(--ease-spring), box-shadow 0.16s;
}
.cs-btn:hover {
  background: var(--text);
  color: var(--bg-card);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.cs-panel {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.cs-panel:hover {
  transform: scale(1.015) translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.cs-panel--dark  { background: var(--cs-dark); }
.cs-panel--blue  { background: var(--cs-blue); }
.cs-panel--peach { background: var(--cs-peach); }
.cs-panel--sage  { background: var(--cs-sage); }
.cs-mockup-placeholder {
  width: 82%; height: 80%;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.cs-panel--blue .cs-mockup-placeholder,
.cs-panel--peach .cs-mockup-placeholder,
.cs-panel--sage .cs-mockup-placeholder {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.mockup-bar {
  height: 26px;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  flex-shrink: 0;
}
.mockup-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.14); }
.mockup-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mockup-line { height: 8px; border-radius: 4px; background: rgba(0,0,0,0.07); }
.mockup-line.short  { width: 50%; }
.mockup-line.medium { width: 78%; }
.mockup-line.long   { width: 95%; }
.mockup-block { flex: 1; border-radius: 8px; background: rgba(0,0,0,0.05); margin-top: 4px; }

/* ============================================================
   PERSONAL SECTION
   ============================================================ */
.personal-section {
  background: var(--bg-2);
  background-image: radial-gradient(circle, rgba(0,0,0,0.075) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 64px 40px;
  overflow: hidden;
}
.personal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.personal-big-text {
  text-align: center;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
  color: var(--text);
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.personal-big-text em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* Widget base */
.widget {
  position: absolute;
  z-index: 3;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.32s var(--ease-spring), box-shadow 0.28s ease;
}
.widget:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); }

/* Photo */
.widget--photo { top: 20px; left: 0; padding: 10px 10px 14px; width: 122px; transform: rotate(-2.5deg); }
.widget--photo .photo-img,
.widget--photo .photo-placeholder {
  width: 100%; aspect-ratio: 1; border-radius: 10px; object-fit: cover;
  background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.widget--photo .photo-name { font-size: 11px; font-weight: 500; color: var(--text-3); text-align: center; margin-top: 9px; }

/* Available now */
.widget--avail {
  top: 14px; right: 0;
  background: #16A34A; border-color: #15803D;
  border-radius: 18px; padding: 16px 18px; width: 196px; transform: rotate(1.5deg);
}
.avail-header { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.avail-tag { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.09em; }
.avail-role { display: block; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 11px; }
.avail-list { display: flex; flex-direction: column; gap: 4px; }
.avail-list li { font-size: 12px; color: rgba(255,255,255,0.8); }

/* Open to work pill */
.widget--open {
  top: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 10px 20px; white-space: nowrap;
  font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.25s var(--ease-spring), box-shadow 0.18s;
}
.widget--open:hover {
  background: var(--text); color: var(--bg-card);
  transform: translateX(-50%) scale(1.04) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
.open-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E; flex-shrink: 0;
  animation: pulse-open 2s ease-in-out infinite;
}
@keyframes pulse-open {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.35); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Interests */
.widget--interests { top: 196px; left: 0; padding: 14px 16px; width: 174px; transform: rotate(1deg); }
.widget--interests strong { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.interest-chips span { font-size: 11px; color: var(--text-2); background: var(--bg-2); border: 1px solid var(--border); border-radius: 100px; padding: 3px 9px; white-space: nowrap; }

/* Clock */
.widget--clock { bottom: 24px; left: 0; padding: 14px 16px; width: 172px; transform: rotate(-1deg); }
.clock-city { font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-3); margin: 0 0 5px; }
.clock-time { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums; margin: 0 0 3px; display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.clock-ampm { font-size: 11px; font-weight: 500; color: var(--text-3); }
.clock-sub { font-size: 10px; color: var(--text-3); margin: 0; }

/* Reading */
.widget--reading { top: 148px; right: 0; padding: 14px 16px; width: 196px; transform: rotate(-1.5deg); }
.reading-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 10px; }
.reading-body { display: flex; gap: 10px; align-items: flex-start; }
.reading-cover { width: 44px; flex-shrink: 0; aspect-ratio: 2/3; border-radius: 5px; background: #F0E8D0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.reading-info strong { display: block; font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 4px; }
.reading-info p { font-size: 11px; color: var(--text-3); line-height: 1.4; }

/* Connect (LinkedIn blue) */
.widget--connect {
  bottom: 24px; right: 0;
  background: #1D4ED8; border-color: #1E40AF;
  padding: 14px 18px; width: 180px; transform: rotate(1.5deg);
  text-decoration: none; display: block;
}
.widget--connect:hover { box-shadow: 0 10px 32px rgba(29,78,216,0.28); }
.connect-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 9px; }
.connect-handle { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 12px; font-weight: 600; }
.connect-in { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: #fff; color: #1D4ED8; border-radius: 5px; font-size: 12px; font-weight: 800; font-style: normal; flex-shrink: 0; }

/* ============================================================
   CASE STUDY SINGLE PAGE
   ============================================================ */
.case-study-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 40px;
  transition: color 0.2s, gap 0.2s;
}
.cs-back:hover { color: var(--text); gap: 10px; }
.cs-page-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 14px;
}
.cs-page-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 24px;
}
.cs-page-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.meta-chip {
  font-size: 12px; padding: 5px 14px; border-radius: 100px;
  background: var(--bg-card); border: 1px solid var(--border-2); color: var(--text-2);
}
.stat-callout {
  display: flex; align-items: center; gap: 20px;
  margin: 32px 0; padding: 20px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--text); border-radius: 0 14px 14px 0;
}
.stat-callout-num { font-size: 36px; font-weight: 700; letter-spacing: -0.04em; flex-shrink: 0; }
.stat-callout-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.cs-page-content { font-size: 16px; line-height: 1.8; color: var(--text-2); }
.cs-page-content h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); margin: 48px 0 14px; }
.cs-page-content h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.cs-page-content p { margin-bottom: 18px; }
.cs-page-content strong { color: var(--text); }
.cs-page-content ul, .cs-page-content ol { padding-left: 20px; margin-bottom: 18px; }
.cs-page-content li { margin-bottom: 8px; }
.cs-nav-pair {
  display: flex; justify-content: space-between;
  margin-top: 72px; padding-top: 32px; border-top: 1px solid var(--border);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.page-content h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 28px;
}
.page-content .lead {
  font-size: 17px; line-height: 1.72; color: var(--text-2); margin-bottom: 44px; max-width: 620px;
}
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
.about-body p { font-size: 15px; line-height: 1.8; color: var(--text-2); margin-bottom: 20px; }
.highlights-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; margin-top: 40px;
}
.highlight-row {
  font-size: 14px; color: var(--text-2); padding: 10px 0;
  border-bottom: 1px solid var(--border); display: flex; gap: 12px;
}
.highlight-row span { color: var(--text-3); }
.chips-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.chips-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 36px; }
.chip {
  font-size: 12px; padding: 5px 12px; border-radius: 100px;
  background: var(--bg-card); border: 1px solid var(--border-2); color: var(--text-2);
}

/* ============================================================
   WORK ARCHIVE
   ============================================================ */
.work-archive {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.work-archive h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 60px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.contact-page h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 14px;
}
.contact-page .lead {
  font-size: 16px; line-height: 1.72; color: var(--text-2); margin-bottom: 36px;
}
.contact-row { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; transition: border-color 0.16s, transform 0.22s var(--ease-spring);
}
.contact-item:hover { border-color: var(--border-2); transform: translateX(6px); }
.contact-item-left { display: flex; flex-direction: column; gap: 3px; }
.contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.contact-item-value { font-size: 15px; color: var(--text); }
.contact-item-arrow { font-size: 16px; color: var(--text-3); }
.avail-card {
  margin-top: 40px; padding: 20px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
}
.avail-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.avail-card-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.avail-card-chips span {
  font-size: 12px; padding: 5px 14px; border-radius: 100px;
  background: var(--bg); border: 1px solid var(--border-2); color: var(--text-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 800px) {
  .site-nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .case-section { grid-template-columns: 1fr; padding: 48px 20px; gap: 28px; }
  .cs-panel { aspect-ratio: 16/10; }
  .personal-inner { min-height: 340px; }
  .personal-big-text { font-size: 36px; }
  .widget { display: none; }
  .page-content, .case-study-page, .contact-page, .work-archive { padding: 100px 20px 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 500px) {
  .nav-links li:not(:last-child) { display: none; }
  .hero-headline { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up, .hero-word { opacity: 1; transform: none; }
  body::before { display: none; }
}
