/* ------------------------------------ */
/* Nikesh Shakya — Portfolio v2         */
/* Near-black · champagne gold · quiet  */
/* ------------------------------------ */

:root {
  --bg: #070706;
  --text: #edebe4;
  --muted: #9a968c;
  --gold: #c9a96a;
  --line: rgba(255, 255, 255, 0.12);
  --font-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --font-mono: "Space Mono", "SF Mono", monospace;
  --pad-x: clamp(20px, 5.5vw, 84px);
  --band-w: 1360px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

a, button { cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }

a { color: inherit; text-decoration: none; }

/* Dotted grid texture */
.grid-texture {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* --- Mono labels --- */
.eyebrow, .status-pill, .tl-dates, .tl-tech, .link-row a,
.quote figcaption, .work-meta p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow { letter-spacing: 0.2em; }

/* --- Orchestrated load reveal --- */
.lift {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
body.is-loaded .lift { opacity: 1; transform: none; }
body.is-loaded .nav-name        { transition-delay: 0.05s; }
body.is-loaded .nav-links       { transition-delay: 0.12s; }
body.is-loaded .status-wrap     { transition-delay: 0.2s; }
body.is-loaded .hero .eyebrow   { transition-delay: 0.25s; }
body.is-loaded .hero h1         { transition-delay: 0.35s; }
body.is-loaded .hero-lede       { transition-delay: 0.5s; }
body.is-loaded .hero-cta        { transition-delay: 0.62s; }
body.is-loaded .portrait        { transition-delay: 0.45s; }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .lift, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Nav --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad-x);
  background: rgba(7, 7, 6, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
}

.nav-right { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }

.nav-links { display: flex; gap: clamp(14px, 2.4vw, 34px); }

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--text); }

.status-wrap { position: relative; }

.status-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 169, 106, 0.35);
  border-radius: 999px;
  padding: 7px 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.status-pill:hover,
.status-pill[aria-expanded="true"] {
  border-color: var(--gold);
  background: rgba(201, 169, 106, 0.08);
}

.status-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: #0d0c0a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.status-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.status-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}
.status-menu a:hover {
  background: rgba(201, 169, 106, 0.1);
  color: var(--gold);
}
.status-menu a + a { margin-top: 2px; }

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px 1px var(--gold);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

/* --- Hero --- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: var(--band-w);
  margin: 0 auto;
  padding: clamp(64px, 11vh, 140px) var(--pad-x) clamp(64px, 10vh, 120px);
}

.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 40%),
    rgba(201, 169, 106, 0.09),
    transparent 65%
  );
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 26px 0 30px;
  max-width: 15ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  max-width: 50ch;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 38px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #14100a;
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(201, 169, 106, 0.3); }

.btn-ghost {
  border: 1px solid rgba(237, 235, 228, 0.25);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Portrait — emerges from shadow, floats */
.portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 500px);
  animation: float 7s ease-in-out infinite;
}

/* soft spotlight halo behind him */
.portrait::before {
  content: "";
  position: absolute;
  inset: -22% -16%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 50% at 52% 42%,
    rgba(201, 169, 106, 0.08),
    rgba(237, 235, 228, 0.03) 45%,
    transparent 72%
  );
}

.portrait img {
  position: relative;
  display: block;
  width: 100%;
  filter: brightness(0.88) contrast(1.05) saturate(0.94)
          drop-shadow(0 34px 44px rgba(0, 0, 0, 0.55));
  /* dissolve the hard bottom cut of the desk */
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 98%);
}

/* fade the sliced desk/arm edges into the page background */
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg), transparent 16%) left bottom / 100% 60% no-repeat,
    linear-gradient(to left, var(--bg), transparent 14%) right bottom / 100% 60% no-repeat;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.portrait .chip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #14100a;
  background: var(--gold);
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .portrait { animation: none; }
}

/* --- Stats band --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: clamp(30px, 4vw, 54px) var(--pad-x);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }

.stat h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.03em;
}

.stat .star { color: var(--gold); font-size: 0.75em; }

.stat p { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

/* --- Bands (sections) --- */
.band {
  max-width: var(--band-w);
  margin: 0 auto;
  padding: clamp(70px, 11vh, 140px) var(--pad-x) 0;
  scroll-margin-top: 80px;
}

.section-head { margin-bottom: clamp(30px, 5vh, 56px); }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 52px);
  letter-spacing: -0.03em;
  margin-top: 14px;
}

/* --- Skills --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 4vh, 48px);
}

.skill-group h4 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.skill-group ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }

.skill-group li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.skill-group li:hover { border-color: rgba(201, 169, 106, 0.5); }

/* --- Experience timeline --- */
.timeline {
  list-style: none;
  position: relative;
  padding-left: clamp(24px, 3vw, 40px);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(26px, 3.6vh, 40px) 0;
}
.tl-row + .tl-row { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.tl-row::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(24px, 3vw, 40px) - 3.5px);
  top: clamp(34px, 4.4vh, 48px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 169, 106, 0.7);
}

.tl-dates { padding-top: 4px; }

.tl-body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.tl-loc {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 12px;
}

.tl-body > p { color: var(--muted); font-size: 15px; max-width: 66ch; }

.tl-tech { margin-top: 12px; font-size: 10.5px; color: rgba(201, 169, 106, 0.75); }

/* --- Portfolio grid --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.8vw, 40px);
}

.work-card {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.work-card:hover { transform: translateY(-6px); }

.work-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: #0d0c0a;
  border: 1px solid transparent;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.work-card:hover .work-img {
  border-color: rgba(201, 169, 106, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.work-card:hover .work-img img { filter: saturate(1) brightness(1); transform: scale(1.03); }

.work-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px 0;
}

.work-meta h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
}

.work-meta p { margin-top: 4px; font-size: 10px; }

.arrow {
  color: var(--muted);
  font-size: 17px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.work-card:hover .arrow,
.article-card:hover .arrow { color: var(--gold); transform: translate(3px, -3px); }

/* --- Project detail modal --- */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.app-modal.open { opacity: 1; visibility: visible; }

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 6, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.app-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  width: min(1080px, 100%);
  max-height: 86vh;
  background: #0d0c0a;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.app-modal.open .app-modal-panel { transform: none; }

.app-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.7);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.app-modal-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

/* Gallery */
.app-gallery {
  position: relative;
  background: #090807;
  border-right: 1px solid var(--line);
  min-height: 320px;
}

.g-track {
  display: flex;
  gap: 14px;
  height: 100%;
  max-height: 86vh;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: clamp(18px, 3vw, 32px);
  scroll-padding-left: clamp(18px, 3vw, 32px);
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 106, 0.35) transparent;
}

.g-track img {
  height: 100%;
  max-height: calc(86vh - 2 * clamp(18px, 3vw, 32px));
  border-radius: 12px;
  scroll-snap-align: start;
  object-fit: contain;
  flex: 0 0 auto;
}

.g-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.75);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.g-nav:hover { border-color: var(--gold); color: var(--gold); }
.g-prev { left: 12px; }
.g-next { right: 12px; }

/* Info column */
.app-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 3.4vw, 40px);
  overflow-y: auto;
  max-height: 86vh;
}

.app-info-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 40px;
}

.app-logo {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.app-info-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.app-sub { margin-top: 4px; }

.app-desc { color: var(--muted); font-size: 15px; }
.app-desc p + p, .app-desc p + ul, .app-desc ul + p { margin-top: 12px; }
.app-desc ul { list-style: none; }
.app-desc li { padding-left: 18px; position: relative; margin-top: 6px; }
.app-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 106, 0.55);
}

.app-actions { margin-top: auto; padding-top: 10px; }

@media (max-width: 900px) {
  .app-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 46vh) minmax(0, 1fr);
    max-height: 92vh;
  }
  .app-gallery { border-right: none; border-bottom: 1px solid var(--line); }
  .g-track, .g-track img { max-height: 46vh; }
  .app-info { max-height: none; }
}

/* --- Testimonials --- */
.quote-stage {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vh, 52px);
  min-height: 300px;
}

.quote {
  position: absolute;
  inset: clamp(30px, 5vh, 52px) 0 0 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; }

.quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 26ch;
}

.quote em { font-style: italic; color: var(--gold); }

.quote figcaption { margin-top: 26px; }

.quote figcaption a {
  color: var(--text);
  border-bottom: 1px solid rgba(237, 235, 228, 0.3);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.quote figcaption a:hover { color: var(--gold); border-color: var(--gold); }

.quote-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.quote-dots button.is-active { background: var(--gold); transform: scale(1.25); }

/* --- Articles --- */
.article-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.article-card:hover { border-color: rgba(201, 169, 106, 0.5); transform: translateY(-3px); }

.article-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.article-card p { color: var(--muted); font-size: 15px; max-width: 66ch; }

/* --- Contact --- */
.contact { text-align: center; padding-bottom: clamp(70px, 10vh, 120px); }

.contact-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 18px auto 42px;
}

.contact-heading em { font-style: italic; color: var(--gold); }

.contact-cta { justify-content: center; }

.link-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 32px);
  margin-top: 46px;
}

.link-row.socials { margin-top: 20px; }
.link-row.socials a { color: rgba(154, 150, 140, 0.6); font-size: 10px; }

.link-row a { transition: color 0.25s ease; }
.link-row a:hover { color: var(--gold); }

/* --- Sponsored bands --- */
.ad-band {
  max-width: var(--band-w);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 90px) var(--pad-x) 0;
}

.ad-band .eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  opacity: 0.55;
  margin-bottom: 12px;
}

.ad-band ins.adsbygoogle {
  display: block;
  min-height: 100px; /* reserved so the ad never shifts layout */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

/* collapse the whole band if AdSense returns no fill */
.ad-band:has(ins[data-ad-status="unfilled"]) { display: none; }

/* --- Footer --- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: 1fr; gap: 36px; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .portrait { order: -1; width: min(78%, 360px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .nav-links { display: none; }
  .quote-stage { min-height: 380px; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .article-card { flex-direction: column; }
  .site-footer { justify-content: center; text-align: center; }
  .quote-stage { min-height: 440px; }
  .status-pill { padding: 6px 11px; }
}
