/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --cream:    #f4ede0;
  --cream2:   #ece4d4;
  --cream3:   #e2d8c8;
  --rust:     #c05a30;
  --rust-lt:  rgba(192, 90, 48, 0.1);
  --sage:     #5c7a60;
  --sage-lt:  rgba(92, 122, 96, 0.12);
  --sage-mid: rgba(92, 122, 96, 0.22);
  --ink:      #1e1a14;
  --ink2:     #3a3228;
  --muted:    #7a6e5e;
  --border:   rgba(30, 26, 20, 0.11);
  --white:    #faf6ef;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3rem;
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 12px; color: var(--muted);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--sage) !important;
  color: #fff !important;
  padding: 6px 16px;
  font-size: 12px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.82 !important; color: #fff !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  display: grid; grid-template-columns: 1fr 400px;
  align-items: stretch;
  padding: 0 0 0 3rem;
  position: relative; overflow: hidden;
}
.hero-bg-letter {
  position: absolute; right: -0.02em; top: 50%;
  transform: translateY(-55%);
  font-family: "Cormorant Garamond", serif;
  font-size: 40vw; font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(30, 26, 20, 0.05);
  line-height: 1; pointer-events: none; z-index: 0; user-select: none;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 6rem 3rem 2.5rem 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 0.5s ease 0.1s forwards;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--rust); }

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
h1 em  { font-style: italic; color: var(--rust); }
h1 .gr { color: var(--sage); }

.hero-desc {
  font-size: 0.95rem; color: var(--muted);
  max-width: 420px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
  margin-bottom: 1.8rem;
}
.hero-ctas {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.82rem 1.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none; border-radius: 2px;
  transition: all 0.22s; cursor: pointer; white-space: nowrap;
}
.btn-rust  { background: var(--rust); color: #fff; border: 1.5px solid var(--rust); }
.btn-rust:hover  { background: #a04520; border-color: #a04520; }
.btn-sage  { background: var(--sage); color: #fff; border: 1.5px solid var(--sage); }
.btn-sage:hover  { background: #4a6650; border-color: #4a6650; }
.btn-ghost { background: transparent; color: var(--ink2); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }

.hero-social {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 0.9rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards;
}
.hero-social-link {
  font-family: "DM Mono", monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid rgba(92,122,96,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-social-link:hover { color: var(--sage); border-color: var(--sage); }
.hero-social-dot { font-size: 11px; color: var(--muted); }

.hero-stats-bar {
  background: var(--cream);
  padding: 1.6rem 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stats {
  display: flex; gap: 2.5rem;
}
.stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem; font-weight: 600;
  color: var(--ink); line-height: 1;
}
.stat-val sup { font-size: 1rem; color: var(--sage); vertical-align: super; }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.06em; }

/* Hero photo panel */
.hero-photo {
  position: relative; z-index: 2;
  overflow: visible; display: flex; align-items: flex-start;
}
.photo-bg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 58%; background: #c8deca; z-index: 0;
}
.photo-bg::before {
  content: "";
  position: absolute; top: 0; left: -50px; bottom: 0; width: 80px;
  background: #c8deca;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}
.photo-img {
  position: relative; z-index: 1;
  width: 95%; max-width: none;
  object-fit: cover; object-position: center 10%;
  display: block; margin-top: 13rem; margin-left: -4.5rem;
  filter: contrast(1.02) saturate(1.0);
}
.photo-badge {
  position: absolute; bottom: 2.5rem; left: -4.5rem; z-index: 3;
  background: var(--rust); color: #fff;
  padding: 0.55rem 1.1rem;
  font-family: "DM Mono", monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 6rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; }

.sec-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: "DM Mono", monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem;
}
.sec-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--rust); }

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink);
}
h2 em  { font-style: italic; color: var(--rust); }
h2 .gr { color: var(--sage); }

/* =============================================
   ABOUT
   ============================================= */
#about { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 6rem; align-items: start; margin-top: 4rem;
}
.about-text p {
  color: var(--muted); margin-bottom: 1.3rem;
  font-size: 1rem; line-height: 1.85;
}
.about-text p strong { color: var(--ink); font-weight: 500; }
.about-text p a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: rgba(92, 122, 96, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.about-text p a:hover { text-decoration-color: var(--sage); }

.badge {
  display: inline-block;
  background: var(--sage-lt); color: var(--sage);
  font-size: 11px; font-weight: 400;
  padding: 2px 8px; border-radius: 2px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em; vertical-align: middle; margin-left: 4px;
}

/* Timeline (education & experience in about sidebar) */
.tl-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink2);
  margin-bottom: 1.4rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}
.tl-item {
  display: flex; gap: 1rem;
  padding-bottom: 1.5rem; position: relative;
}
.tl-item:not(:last-child)::after {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 1px; bottom: 0;
  background: var(--border);
}
.tl-dot {
  flex-shrink: 0; width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  background: var(--white); margin-top: 5px;
}
.tl-dot.gr { border-color: var(--sage); }
.tl-yr {
  font-family: "DM Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--rust); margin-bottom: 2px;
}
.tl-yr.gr { color: var(--sage); }
.tl-school { font-size: 0.92rem; font-weight: 500; color: var(--ink); margin-bottom: 1px; }
.tl-prog   { font-size: 12px; color: var(--muted); }
.tl-gpa {
  display: inline-block; margin-top: 4px;
  font-family: "DM Mono", monospace;
  font-size: 10px; color: var(--sage);
  background: var(--sage-lt);
  padding: 2px 7px; border-radius: 2px;
}

/* =============================================
   PROJECTS
   ============================================= */
#projects { background: var(--cream2); }

.proj-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
  flex-wrap: wrap; gap: 1rem;
}
.proj-intro {
  font-size: 0.95rem; color: var(--muted);
  max-width: 480px; line-height: 1.8; margin-top: 0.6rem;
}
.proj-grid {
  columns: 3;
  column-gap: 1.2rem;
}

/* Card shell */
.proj-card {
  position: relative; overflow: hidden;
  border-radius: 4px;
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  aspect-ratio: 5 / 4;
  display: flex; flex-direction: column;
  break-inside: avoid;
  margin-bottom: 1.2rem;
  width: 100%;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(92, 122, 96, 0.18), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(92, 122, 96, 0.35);
}

/* Visual area */
.card-vis { flex: 1; position: relative; overflow: hidden; }

/* ── Card visuals (v1–v9) ──────────────────── */
/* Add more .vN classes here when you add new projects */
.v1 { background: linear-gradient(155deg, #1e1a14 0%, #2c2416 100%); }
.v1::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,90,48,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,90,48,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
}
.v2 { background: linear-gradient(135deg, #1a3020 0%, #2a4a30 100%); }
.v2::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(92,160,100,0.2) 28px, rgba(92,160,100,0.2) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(92,160,100,0.2) 28px, rgba(92,160,100,0.2) 29px);
}
.v3 { background: linear-gradient(120deg, #0e1f0e 0%, #183520 100%); }
.v3::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(92,160,100,0.35) 1px, transparent 1px);
  background-size: 16px 16px;
}
.v4 { background: linear-gradient(150deg, #1a1410 0%, #2e1f14 100%); }
.v4::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,90,48,0.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(192,90,48,0.15) 2px, transparent 2px);
  background-size: 22px 22px;
}
.v5 { background: linear-gradient(135deg, #1e0e0a 0%, #3a1a10 100%); }
.v5::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0px, transparent 8px, rgba(192,90,48,0.1) 8px, rgba(192,90,48,0.1) 9px);
}
.v6 { background: linear-gradient(135deg, #112018 0%, #1e3828 100%); }
.v6::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0, transparent 20px, rgba(92,160,96,0.18) 20px, rgba(92,160,96,0.18) 21px);
}
.v7 { background: linear-gradient(150deg, #0f200f 0%, #1a3320 100%); }
.v7::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 50px at 30% 60%, rgba(92,160,96,0.22) 0%, transparent 70%),
    radial-gradient(circle 30px at 70% 30%, rgba(92,160,96,0.18) 0%, transparent 70%);
}
.v8 { background: linear-gradient(120deg, #1a1428 0%, #2a1e3e 100%); }
.v8::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(192,90,48,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(92,122,96,0.25) 0%, transparent 50%);
}
.v9 { background: linear-gradient(150deg, #1e1208 0%, #2e1e0e 100%); }
.v9::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(60deg, transparent 0px, transparent 10px, rgba(192,90,48,0.08) 10px, rgba(192,90,48,0.08) 11px);
}

/* Preview image inside card */
.card-preview-img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
}

/* Image cards: auto height based on image */
.proj-card:has(.card-preview-img) { aspect-ratio: auto; }

/* Dark gradient at bottom for title readability */
.card-vis:has(.card-preview-img)::before {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  z-index: 2; pointer-events: none;
}

/* Ensure title sits above gradient */
.card-vis:has(.card-preview-img) .card-title { z-index: 3; }

/* Card labels */
.card-num {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-family: "DM Mono", monospace;
  font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em;
}
.ctags {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.ct {
  font-family: "DM Mono", monospace;
  font-size: 9px; padding: 2px 7px;
  border-radius: 2px; letter-spacing: 0.06em;
}
.ct-r { background: rgba(192,90,48,0.75); color: #ffe0d0; }
.ct-g { background: rgba(60,110,65,0.78);  color: #cceedd; }
.ct-m { background: rgba(50,40,30,0.65);   color: rgba(255,255,255,0.75); }

.card-title {
  position: absolute; bottom: 0.9rem; left: 0.9rem; right: 0.9rem; z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-weight: 600;
  color: #fff; line-height: 1.25;
}

/* Hover overlay */
.card-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(38, 68, 42, 0.96);
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.4rem;
  opacity: 0; transition: opacity 0.25s;
}
.proj-card:hover .card-overlay { opacity: 1; }

.ov-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-weight: 600;
  color: #fff; line-height: 1.25; margin-bottom: 0.6rem;
}
.ov-desc {
  font-size: 12px; color: rgba(255,255,255,0.82);
  line-height: 1.65; margin-bottom: 0.8rem;
}
.ov-tech { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.8rem; }
.ov-chip {
  font-family: "DM Mono", monospace;
  font-size: 9px; padding: 2px 6px; border-radius: 2px;
  background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.78);
  letter-spacing: 0.05em;
}
.ov-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: "DM Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em;
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px; width: fit-content;
  transition: border-color 0.2s;
}
.ov-link:hover { border-color: #fff; }

/* Card footer */
.card-foot {
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0;
}
.cf-yr   { font-family: "DM Mono", monospace; font-size: 9.5px; color: var(--muted); letter-spacing: 0.1em; }
.cf-type { font-size: 11px; color: var(--muted); font-style: italic; }

/* =============================================
   SKILLS
   ============================================= */
#skills { background: var(--white); }

.skills-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 4rem;
}
.sk-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink);
  padding-bottom: 0.7rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.sk-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(30,26,20,0.05);
}
.sk-name { font-size: 13.5px; color: var(--ink); }
.sk-dots { display: flex; gap: 4px; }
.d   { width: 8px; height: 8px; border-radius: 50%; background: rgba(30,26,20,0.09); }
.d.r { background: var(--rust); }
.d.g { background: var(--sage); }

.sk-cat {
  font-family: "DM Mono", monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 1.3rem 0 0.4rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 0.8rem; }
.chip {
  font-family: "DM Mono", monospace;
  font-size: 10.5px; padding: 4px 11px;
  border: 1px solid var(--border); border-radius: 2px;
  color: var(--muted); background: var(--cream);
  letter-spacing: 0.04em;
  transition: all 0.18s; cursor: default;
}
.chip:hover { border-color: var(--sage); color: var(--sage); }

/* =============================================
   AWARDS
   ============================================= */
#awards { background: var(--cream2); }

.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.aw-card {
  padding: 1.7rem;
  border: 1px solid var(--border); border-radius: 3px;
  background: var(--white);
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.aw-card:hover { border-color: var(--sage-mid); transform: translateY(-3px); }
.aw-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--sage);
}
.aw-yr   { font-family: "DM Mono", monospace; font-size: 10px; color: var(--sage); letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.aw-name { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 0.35rem; }
.aw-org  { font-size: 11.5px; color: var(--muted); }

/* =============================================
   CONTACT
   ============================================= */
#contact {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: 7rem 3rem;
  position: relative; overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(92,122,96,0.1) 0%, transparent 70%);
  pointer-events: none;
}
#contact .sec-eyebrow          { justify-content: center; color: rgba(244,237,224,0.3); }
#contact .sec-eyebrow::before  { background: rgba(244,237,224,0.3); }
#contact h2          { color: var(--cream); margin: 0.4rem 0 1.2rem; }
#contact h2 em       { color: #e07858; }
#contact h2 .gr      { color: #8fbc94; }

.ct-sub {
  font-size: 0.95rem; color: rgba(244,237,224,0.5);
  max-width: 420px; margin: 0 auto 3rem; line-height: 1.8;
}
.ct-links {
  display: flex; justify-content: center;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.ct-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: "DM Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(244,237,224,0.5); text-decoration: none;
  border-bottom: 1px solid rgba(244,237,224,0.1);
  padding-bottom: 2px; transition: all 0.2s;
}
.ct-link:hover { color: #8fbc94; border-color: #8fbc94; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #131008; padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.ft {
  font-family: "DM Mono", monospace;
  font-size: 10px; color: rgba(244,237,224,0.18); letter-spacing: 0.08em;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  nav { padding: 1rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
  .hero-photo, .hero-bg-letter { display: none; }
  section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .proj-grid  { grid-template-columns: repeat(2, 1fr); }
  .skills-layout, .awards-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; gap: 0.4rem; text-align: center; }
}
@media (max-width: 560px) {
  .proj-grid { grid-template-columns: 1fr; }
}
