/* ============================================
   SRIYA THOTAKURA — NEO-BRUTALIST PORTFOLIO
   Aesthetic: Anti-Design / Neo-Brutalist
   LIGHT MODE — Cream + Navy + Electric Lime
   ============================================ */

:root {
  --navy: #0a0e1a;
  --navy-light: #f7f5f0;
  --cream: #f5f0e8;
  --cream-dark: #e8e2d6;
  --lime: #ccff00;
  --lime-dark: #95c510;
  --lime-dim: rgba(204, 255, 0, 0.2);
  --lime-glow: rgba(204, 255, 0, 0.12);
  --text: #0a0e1a;
  --text-muted: #4a4a5a;
  --text-dim: #8a8a9a;
  --border: rgba(10, 14, 26, 0.1);
  --border-strong: rgba(10, 14, 26, 0.2);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Newsreader", Georgia, serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--navy);
  color: var(--cream);
}

/* ---- Grain Overlay ---- */
.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ---- Animations ---- */
.anim-up {
  opacity: 0;
  transform: translateY(40px);
  animation: animUp 0.85s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes animUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-pop {
  opacity: 0;
  transform: scale(0.8) rotate(-4deg);
  animation: animPop 0.6s var(--ease-spring) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes animPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Stickers ---- */
.sticker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-spring);
  cursor: default;
}

.sticker:hover {
  transform: scale(1.08) !important;
}

.sticker--lime {
  background: var(--lime);
  color: var(--navy);
}

.sticker--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-strong);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo-accent {
  color: var(--lime-dark);
}

.nav__divider {
  color: var(--text-dim);
  font-size: 14px;
}

.nav__subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.nav__link-dot {
  color: var(--lime-dark);
  font-weight: 600;
}

.nav__link:hover {
  color: var(--navy);
}

.nav__cta-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--lime);
  margin-left: -20px;
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}

.nav__cta-pill:hover {
  background: var(--navy);
  color: var(--lime);
  box-shadow: 0 8px 32px rgba(10, 14, 26, 0.15);
  transform: translateY(-2px);
}

.nav__cta-pill-port {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: var(--navy);
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}

.nav__cta-pill-port:hover {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(10, 14, 26, 0.15);
  transform: translateY(-2px);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav__mobile-toggle span,
.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 4px;
  transition: all 0.3s var(--ease);
}

.nav__mobile-toggle span {
  top: 15px;
}

.nav__mobile-toggle span::before {
  content: "";
  top: -8px;
}

.nav__mobile-toggle span::after {
  content: "";
  top: 8px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: canvasFadeIn 1.5s ease 0.3s forwards;
}

@keyframes canvasFadeIn {
  to {
    opacity: 1;
  }
}

.hero__badge-float {
  position: absolute;
  top: 160px;
  right: 80px;
  z-index: 2;
}

.hero__badge-float--right {
  top: auto;
  bottom: 200px;
  right: 120px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__pre {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: clamp(32px, 11vw, 16px);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__pre-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--lime-dark);
}

.hero__name {
  margin-bottom: 20px;
}

.hero__name-line {
  display: block;
  position: relative;
  line-height: 1;
}

.hero__name-line--indent {
  padding-left: 10vw;
}

.hero__name-text {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}

.hero__name-outline {
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
  opacity: 0.2;
  z-index: 1;
  user-select: none;
}

/* ---- Hero Taglines ---- */
.hero__taglines {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__tagline-dot {
  color: var(--lime-dark);
  font-weight: 900;
}

.hero__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 40px;
}

.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow svg {
  color: var(--navy);
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ---- Ticker ---- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--lime);
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ticker__track span {
  padding: 0 8px;
}

.ticker__star {
  font-size: 8px;
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ---- Section Utilities ---- */
.section-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime-dark);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}

.section-heading-accent {
  color: var(--lime-dark);
}

/* ---- About ---- */
.about {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* About Love Block */
.about__love-block {
  margin-top: 40px;
}

.about__love-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.about__love-text--em {
  color: var(--lime-dark);
}

.about__bio-block {
  margin-bottom: 48px;
}

.about__bio {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

.about__bio + .about__bio {
  margin-top: 20px;
}

.about__bio--highlight {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  padding-left: 24px;
  border-left: 3px solid var(--lime);
  line-height: 1.6;
}

.about__bio--highlight strong {
  font-weight: 600;
  font-style: normal;
}

/* About Section Titles */
.about__section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lime);
  display: inline-block;
}

/* Work Experience */
.about__experience {
  margin-bottom: 48px;
}

.exp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}

.exp-row:hover {
  padding-left: 8px;
  border-bottom-color: var(--navy);
}

.exp-row__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exp-row__company {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.exp-row__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.exp-row__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime-dark);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Education */
.about__edu {
  margin-bottom: 48px;
}

.edu-row {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: all 0.25s var(--ease);
}

.edu-row:hover {
  padding-left: 8px;
  border-bottom-color: var(--navy);
}

.edu-row__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime-dark);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 70px;
}

.edu-row__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.edu-row__degree {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.edu-row__school {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Resume Button */
.about__resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--lime);
  padding: 14px 28px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.about__resume-btn:hover {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 32px rgba(10, 14, 26, 0.15);
  transform: translateY(-2px);
}

/* Resume Button */
.about__resume-btn-port {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: var(--navy);
  padding: 14px 28px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.about__resume-btn-port:hover {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(10, 14, 26, 0.15);
  transform: translateY(-2px);
}

/* ---- Work / Projects ---- */
.work {
  padding: 80px 48px 60px;
  position: relative;
  border-top: 1px solid var(--border);
}

.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.work__header-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work__count-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}

/* ---- Project Grid (Asymmetric Bento) ---- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

/* Base Card */
.proj {
  position: relative;
  background: #ffffff;
  border: 1.5px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.45s var(--ease);
}

.proj:hover {
  border-color: var(--navy);
  box-shadow:
    0 24px 60px rgba(10, 14, 26, 0.1),
    0 0 0 1.5px var(--navy);
  z-index: 10;
}

article.proj {
  cursor: default;
}

/* Grid Spans */
.proj--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.proj--tall {
  grid-row: span 2;
}

.proj--wide,
.proj--wide2,
.proj--wide3 {
  grid-column: span 2;
}

/* Card Image */
.proj__img {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.proj__gen {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  position: absolute;
  top: 0;
  left: 0;
}

.proj:hover .proj__gen {
  transform: scale(1.06);
}

.proj__num {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.5;
  filter: drop-shadow(2px -2px 0px var(--cream));
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* Card Info */
.proj__info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proj__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-dark);
  font-weight: 500;
}

.proj__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
}

.proj__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proj__tools {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.proj__tools span {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* Hero card: side-by-side layout */
.proj--hero {
  flex-direction: row;
}

.proj--hero .proj__img {
  flex: 1;
  min-width: 0;
}

.proj--hero .proj__info {
  flex: 0 0 45%;
  justify-content: center;
  padding: 28px 28px;
  gap: 10px;
}

.proj--hero .proj__title {
  font-size: 22px;
}

.proj--hero .proj__desc {
  -webkit-line-clamp: 5;
}

/* Wide cards: side-by-side layout */
.proj--wide .proj__info,
.proj--wide2 .proj__info,
.proj--wide3 .proj__info {
  padding: 18px 22px;
}

.proj--wide .proj__title,
.proj--wide2 .proj__title,
.proj--wide3 .proj__title {
  font-size: 17px;
}

/* ---- Contact ---- */
.contact {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--navy);
}

.contact__heading-em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--lime-dark);
}

.contact__heading-star {
  color: var(--lime-dark);
  font-size: 0.8em;
}

.contact__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.contact__links {
  display: flex;
  flex-direction: column;
}

.contact__link-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.35s var(--ease);
}

.contact__link-row:first-child {
  border-top: 1px solid var(--border);
}

.contact__link-row:hover {
  padding-left: 12px;
  border-bottom-color: var(--navy);
}

.contact__link-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.contact__link-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  transition: color 0.3s var(--ease);
}

.contact__link-row:hover .contact__link-value {
  color: var(--lime-dark);
}

.contact__link-arrow {
  font-size: 18px;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}

.contact__link-row:hover .contact__link-arrow {
  color: var(--navy);
  transform: translate(4px, -4px);
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer__top-section {
  padding: 60px 48px;
  text-align: center;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.footer__heading-accent {
  color: var(--lime-dark);
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
  background: var(--lime);
  border-color: var(--navy);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(204, 255, 0, 0.3);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.footer__top-btn {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font-mono);
  transition: opacity 0.3s var(--ease);
}

.footer__top-btn:hover {
  opacity: 0.7;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hero__badge-float {
    display: none;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .proj--hero {
    flex-direction: column;
  }

  .proj--hero .proj__info {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav__right {
    display: none;
  }

  .nav__mobile-toggle {
    display: block;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .hero__name-line--indent {
    padding-left: 0;
  }

  .hero__taglines {
    flex-direction: column;
    gap: 8px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__scroll-hint {
    display: none;
  }

  .work {
    padding: 60px 20px 40px;
  }

  .work__header {
    margin-bottom: 32px;
  }

  .work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .proj--hero,
  .proj--tall,
  .proj--wide,
  .proj--wide2,
  .proj--wide3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .proj--hero {
    flex-direction: column;
  }

  .proj--hero .proj__info {
    flex: 0 0 auto;
  }

  .proj__img {
    min-height: 180px;
  }

  .proj__info {
    padding: 16px 18px;
  }

  .proj__title {
    font-size: 15px;
  }

  .about {
    padding: 80px 24px;
  }

  .contact {
    padding: 80px 24px;
  }

  .contact__link-row {
    grid-template-columns: 1fr auto;
  }

  .contact__link-label {
    display: none;
  }

  .footer__top-section {
    padding: 40px 24px;
  }

  .footer__bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__name-text,
  .hero__name-outline {
    font-size: 48px;
  }

  .hero__tagline {
    font-size: 22px;
  }

  .proj__num {
    font-size: 48px;
  }

  .footer__socials {
    gap: 12px;
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
  }

  .footer__social-link svg {
    width: 18px;
    height: 18px;
  }
}
