/* ==========================================================================
   Leo Varghese — Portfolio
   style.css — Dark theme, mobile-first, vanilla CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --bg-primary:    #0d1117;
  --bg-secondary:  #161b22;
  --bg-card:       #1c2128;
  --text-primary:  #e6edf3;
  --text-muted:    #8b949e;
  --text-code:     #79c0ff;
  --accent:        #58a6ff;
  --accent-green:  #3fb950;
  --accent-yellow: #d29922;
  --border:        #30363d;
  --border-hover:  #58a6ff;
  --nav-height:    56px;
  --max-width:     1100px;
  --radius:        6px;
  --transition:    0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #79c0ff;
  text-decoration: underline;
}

code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.875em;
  color: var(--text-code);
  background: var(--bg-secondary);
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   3. Utility
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #0d1117;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #79c0ff;
  border-color: #79c0ff;
  color: #0d1117;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: rgba(88, 166, 255, 0.1);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.95rem;
  color: var(--accent-green);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo:hover {
  color: #56d364;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* Resume button in nav — desktop only styling */
.nav-resume__btn {
  font-size: 0.85rem !important;
  padding: 0.3rem 0.85rem !important;
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.nav-resume__btn:hover {
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger open state */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. Sections — Base
   -------------------------------------------------------------------------- */
.section {
  padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem;
  min-height: auto;
}

/* First section sits behind nav */
.section--terminal {
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 2.5rem;
  display: flex;
  align-items: center;
}

.section-heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   7. Terminal Section
   -------------------------------------------------------------------------- */
.section--terminal {
  background: var(--bg-primary);
  justify-content: center;
}

.section--terminal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.terminal-window {
  width: 100%;
  max-width: 760px;
  background: #1a1a1a;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #2a2a2a;
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot--red    { background: #ff5f57; }
.terminal-dot--yellow { background: #febc2e; }
.terminal-dot--green  { background: #28c840; }

.terminal-title {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.terminal-output {
  padding: 1.25rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.875rem;
  color: var(--accent-green);
  height: 340px;
  overflow-y: auto;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-skip {
  font-size: 0.85rem;
}

/* Terminal line colors */
.term-line {
  color: var(--accent-green);
}
.term-green  { color: var(--accent-green); }
.term-muted  { color: var(--text-muted); }
.term-accent { color: var(--accent); }
.term-white  { color: var(--text-primary); font-weight: 700; }

/* --------------------------------------------------------------------------
   8. Projects Section
   -------------------------------------------------------------------------- */
.section--projects {
  background: var(--bg-primary);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.project-card__header {
  margin-bottom: 0.5rem;
}

.project-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(63, 185, 80, 0.1);
  padding: 0.15em 0.5em;
  border-radius: 3px;
}

.project-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.project-card__headline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.project-card__meta {
  margin-bottom: 0.75rem;
}

.metric {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.85rem;
  color: var(--accent-yellow);
  font-weight: 600;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  color: var(--text-code);
  background: rgba(56, 139, 253, 0.1);
  border: 1px solid rgba(56, 139, 253, 0.2);
  padding: 0.15em 0.5em;
  border-radius: 3px;
}

.project-card__expand {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
}

.project-card__detail {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.project-card__detail h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  margin-top: 0.75rem;
}

.project-card__detail h4:first-child {
  margin-top: 0;
}

.project-card__detail p {
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

/* Other work */
.other-work__heading {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.other-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.other-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.other-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.other-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Skills / Graph Section
   -------------------------------------------------------------------------- */
.section--skills {
  background: var(--bg-secondary);
}

.dependency-graph {
  min-height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.graph-placeholder {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Graph node states */
.node-skill,
.node-project {
  transition: opacity 0.2s ease;
}

.node--dimmed {
  opacity: 0.15;
}

.node--highlighted circle,
.node--highlighted rect {
  filter: drop-shadow(0 0 6px currentColor);
}

/* Graph links */
.link {
  transition: stroke 0.2s ease, opacity 0.2s ease;
}

.link--active {
  stroke: #58a6ff !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
}

/* Project card highlight from graph */
.card--highlighted {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 1px var(--accent);
}

.card--dimmed {
  opacity: 0.4;
}

/* Mobile fallback tag cloud */
.graph-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  justify-content: center;
}

.graph-fallback__tag {
  font-size: 0.8rem;
  padding: 0.25em 0.65em;
}

/* --------------------------------------------------------------------------
   10. About Section (man leo)
   -------------------------------------------------------------------------- */
.section--about {
  background: var(--bg-primary);
}

.man-page {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  white-space: pre-wrap;
  word-break: break-word;
  max-width: 720px;
}

.man-section {
  color: var(--text-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. Contact Section
   -------------------------------------------------------------------------- */
.section--contact {
  background: var(--bg-secondary);
  min-height: auto;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.contact-cta {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
}

.contact-email {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-divider {
  color: var(--border);
}

.contact-email__link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.contact-email__link:hover {
  border-bottom-color: var(--accent);
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-version {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-built__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-built__link:hover {
  color: var(--accent);
}

.footer-built__logo {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-built__link:hover .footer-built__logo {
  opacity: 1;
}

.footer-repo {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-repo:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   13. Floating Chat Button
   -------------------------------------------------------------------------- */
.chat-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--accent);
  color: #0d1117;
  border: none;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(88, 166, 255, 0.3);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.chat-toggle:hover {
  background: #79c0ff;
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.45);
  transform: translateY(-1px);
}

.chat-toggle__icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. Chat Panel
   -------------------------------------------------------------------------- */
.chat-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 340px;
  max-height: 520px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  z-index: 950;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.chat-panel__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.chat-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
}

.chat-panel__close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}

.chat-panel__close:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.chat-panel__disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.35rem 1rem 0;
  flex-shrink: 0;
}

.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat-msg {
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  max-width: 90%;
  word-break: break-word;
}

.chat-msg--ai {
  background: var(--bg-card);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  min-height: 38px;
}

.chat-msg--typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.2s infinite ease-in-out;
}

.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

.chat-msg--user {
  background: var(--accent);
  color: #0d1117;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* Progress bar */
.chat-panel__progress {
  padding: 0.75rem 1rem;
  flex-shrink: 0;
}

.chat-progress__bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.chat-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.chat-progress__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Input row */
.chat-panel__input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.chat-panel__input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
}

.chat-panel__input:focus {
  border-color: var(--accent);
}

.chat-panel__input::placeholder {
  color: var(--text-muted);
}

.chat-panel__send {
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  flex-shrink: 0;
}

/* FAQ fallback */
.chat-panel__faq {
  padding: 0.75rem 1rem;
  overflow-y: auto;
  flex: 1;
}

.chat-panel__faq-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.faq-item {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__q {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.faq-item__a {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile chat panel */
@media (max-width: 768px) {
  .chat-panel {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 4.5rem;
  }
}

/* --------------------------------------------------------------------------
   15. Mobile Responsive — ≤ 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  /* Resume nav item — plain link style on mobile */
  .nav-resume__btn {
    background: transparent !important;
    border: none !important;
    color: var(--accent) !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem !important;
    width: 100%;
    text-align: left;
  }

  /* Sections */
  .section {
    padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem;
  }

  .section--terminal {
    padding-top: calc(var(--nav-height) + 2rem);
    min-height: auto;
  }

  /* Terminal */
  .terminal-output {
    font-size: 0.8rem;
    min-height: 200px;
  }

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

  /* Chat button — hide label on small screens */
  .chat-toggle__label {
    display: none;
  }

  .chat-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .chat-toggle__icon {
    font-size: 1.25rem;
  }

  /* Man page */
  .man-page {
    font-size: 0.78rem;
    padding: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   15. Tablet — 769px–1023px
   -------------------------------------------------------------------------- */
@media (min-width: 769px) and (max-width: 1023px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   16. Desktop — ≥ 1024px
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-work__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: calc(var(--nav-height) + 3rem) 0 3rem;
  }

  .section--terminal {
    padding-top: calc(var(--nav-height) + 3rem);
  }
}
