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

:root {
  --bg: #f4f2ee;
  --bg-warm: #eceae4;
  --bg-code: #e8e5de;
  --bg-white: #faf9f7;
  --surface: #ffffff;
  --border: #d4d0c8;
  --border-strong: #b8b4aa;
  --border-light: #e2dfd8;
  --text: #1a1a1a;
  --text-2: #555550;
  --text-3: #8a8880;
  --text-4: #b0ada5;
  --accent: #0066ff;
  --accent-dim: #0055d4;
  --accent-light: #e8f0ff;
  --accent-glow: rgba(0, 102, 255, 0.06);
  --green: #1a8a4a;
  --green-bg: #e6f5ed;
  --mono: 'Azeret Mono', 'Courier New', monospace;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 3px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--border) 0.7px, transparent 0.7px);
  background-size: 28px 28px;
  opacity: 0.35;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 242, 238, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border-light);
  transition: transform 0.4s var(--ease);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo .prompt {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-warm);
}

.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  font-weight: 500 !important;
  border-radius: var(--radius) !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  margin: 4px 0;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(3.8px, 3.8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(3.8px, -3.8px);
}

/* ─── LAYOUT ─── */
section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-photo {
  width: 280px;
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg-code);
  position: relative;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.85s forwards;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  padding: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-4);
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  border-radius: 0 0 6px 0;
  opacity: 0.4;
}

.hero-terminal {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-3);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}

.hero-terminal .blink {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroLine 0.8s var(--ease) forwards;
}

.hero h1 .line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero h1 .line:nth-child(2) {
  animation-delay: 0.35s;
}

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

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.2;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.55s forwards;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.7s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.15);
}

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

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

/* ─── SECTION HEADERS ─── */
.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-2);
  margin-top: 0.75rem;
  max-width: 480px;
  font-size: 0.95rem;
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.10fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}

.stat-row:hover {
  border-color: var(--accent);
}

.stat-key {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-3);
  white-space: nowrap;
}

.stat-val {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.stat-val .unit {
  color: var(--text-3);
  font-weight: 400;
}

.tech-box {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.tech-box-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
  padding: 0.3rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ─── PROJECTS ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 20 / 10;
  background: var(--bg-code);
  overflow: hidden;
  position: relative;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-thumb img {
  transform: scale(1.03);
}

.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-4);
  position: relative;
}

.thumb-placeholder::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1.5px dashed var(--border);
  border-radius: 50%;
}

.project-body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-live {
  color: var(--green);
  background: var(--green-bg);
}

.badge-live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease infinite;
}

.badge-type {
  color: var(--text-3);
  background: var(--bg);
}

.project-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0.6rem 0;
  line-height: 1.2;
  /* letter-spacing: -0.02em; */
}

.project-desc {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.project-stack .tag {
  font-size: 0.58rem;
  padding: 0.2rem 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  aspect-ratio: 16/10;
  border-radius: 3px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: var(--bg-code);
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.5rem;
  color: var(--text-4);
}

.demo-box {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.demo-toggle {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 0.7rem 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.demo-toggle:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

.demo-toggle .chev {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-size: 0.6rem;
}

.demo-toggle.open .chev {
  transform: rotate(90deg);
}

.demo-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: var(--bg-white);
}

.demo-body.expanded {
  max-height: 300px;
}

.demo-body-inner {
  padding: 1rem 1.25rem;
}

.demo-body ol {
  color: var(--text-2);
  font-size: 0.85rem;
  padding-left: 1.1rem;
  line-height: 2;
}

.demo-body code {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.project-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.plink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  transition: all 0.25s var(--ease);
}

.plink svg {
  width: 13px;
  height: 13px;
}

.plink:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.plink-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.plink-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.18);
}

/* ─── BLOG ─── */
#contact {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ─── BLOG ─── */
#blog {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.blog-empty {
  border: 1.5px dashed var(--border);
  border-radius: 6px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.blog-empty-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--text-4);
}

.blog-empty p {
  color: var(--text-3);
  font-size: 0.88rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
}

.blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.25s;
}

.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-date {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-4);
  margin-bottom: 0.6rem;
}

.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-2);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.contact-text p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-2);
  padding: 1.1rem 1.5rem;
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  transition: all 0.25s var(--ease);
}

.contact-card:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.06);
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card:hover .contact-icon {
  background: var(--accent-light);
  border-color: var(--accent);
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  color: var(--text-3);
}

.contact-card:hover .contact-icon svg {
  color: var(--accent);
}

.contact-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-value {
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

/* ─── FOOTER ─── */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(244, 242, 238, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: scale(0.94);
  transition: transform 0.35s var(--ease);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.lightbox-close:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 5rem 1.5rem;
  }

  .project-body {
    padding: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-photo {
    width: 200px;
    height: 240px;
    justify-self: start;
  }

  .hero-photo::after {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3.5rem 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0.25rem;
    background: rgba(244, 242, 238, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
  }

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

  .hamburger {
    display: block;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .project-body {
    padding: 1.5rem;
  }

  .footer-links {
    display: none;
  }

  .hero-photo {
    width: 160px;
    height: 200px;
  }
}
