/* ══════════════════════════════════════
   8DesignWorks. — Main Stylesheet
   ══════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=nexa@300,400&display=swap');

/* ── Variables ── */
:root {
  --black:      #0a0a0a;
  --off-white:  #f5f3ef;
  --warm-white: #faf9f7;
  --accent:     #c8a96e;
  --mid-grey:   #888;
  --light-grey: #d8d4ce;
  --border:     #e0ddd8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Nexa', 'DM Sans', system-ui, sans-serif;
  --font-nexa:  'Nexa', 'DM Sans', system-ui, sans-serif;
  --nav-h:      88px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-nexa);
  font-weight: 300;
  background: var(--warm-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* ══ LOGO GROUP ══ */
.logo-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  height: 100%;
  flex-shrink: 0;
}
.logo-group .logo-img {
  height: 56px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.logo-group .brand-name {
  font-family: 'Nexa', 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
  font-style: normal;
}
.logo-group .brand-name em {
  font-style: normal;
  font-weight: 300;
  color: #000000;
}

/* ══ DESKTOP NAV ══ */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-item > a,
.main-nav > a {
  font-family: var(--font-nexa);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}
.nav-item > a:hover,
.main-nav > a:hover { color: var(--accent); }

.nav-contact {
  padding: 8px 20px;
  border: 1px solid var(--black);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  height: auto !important;
}
.nav-contact:hover {
  background: var(--black) !important;
  color: var(--warm-white) !important;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 180px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-nexa);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: padding-left 0.2s, color 0.2s;
  height: auto !important;
}
.dropdown a:hover { color: var(--accent); padding-left: 26px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-nexa);
  font-size: 1.4rem;
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  height: auto;
  display: block;
}
.mobile-nav a[href*="filter"] {
  font-size: 1rem;
  color: var(--mid-grey);
  padding: 10px 0 10px 16px;
  border: none;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr auto;
}
.hero-text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-text h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 280px;
}
.hero-image {
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
  background: var(--light-grey);
}
.hero-image img,
.hero-placeholder { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder { display: flex; }
.scroll-hint {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding: 20px 60px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.scroll-hint:hover { color: var(--accent); }

/* ══════════════════════════════════════
   PROJECTS SECTION
══════════════════════════════════════ */
.projects-section { padding: 72px 40px; }
.projects-page { padding-top: var(--nav-h); }
.projects-header { padding: 48px 40px 0; }
.projects-header h1 {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 12px 22px;
  font-family: var(--font-nexa);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--black); border-bottom-color: var(--black); font-weight: 400; }

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 4 / 3;
  display: block;
  cursor: pointer;
}
.project-card.hidden { display: none; }
.card-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.6s var(--ease);
}
.project-card:hover .card-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.project-card:hover .card-overlay { opacity: 1; }
.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.project-card:hover .card-info { opacity: 1; transform: translateY(0); }
.card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 3px;
}
.card-info span {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ══════════════════════════════════════
   PROJECT DETAIL PAGE
══════════════════════════════════════ */
.project-page { padding-top: var(--nav-h); min-height: 100vh; }
.project-back {
  display: inline-block;
  padding: 18px 40px;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.project-back:hover { color: var(--black); }
.project-detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - var(--nav-h) - 56px);
}
.project-sidebar {
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--nav-h) + 56px);
  height: fit-content;
}
.project-sidebar h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.project-meta {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 2;
  margin-bottom: 28px;
}
.project-meta strong {
  color: var(--black);
  display: block;
  margin-top: 12px;
  font-weight: 400;
}
.project-description {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
}
.dynamic-gallery { display: flex; flex-direction: column; gap: 2px; }
.dg-hero { width: 100%; overflow: hidden; background: var(--light-grey); max-height: 85vh; }
.dg-hero img { width: 100%; height: 100%; object-fit: cover; max-height: 85vh; cursor: zoom-in; }
.dg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dg-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in; }
.dg-grid img.wide { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* ══════════════════════════════════════
   STUDIO PAGE
══════════════════════════════════════ */
.studio-page { padding-top: var(--nav-h); }
.studio-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.studio-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
}
.studio-hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 28px;
}
.studio-hero-text h1 em { font-style: italic; color: var(--accent); }
.studio-hero-text p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: #555; max-width: 400px; }
.studio-hero-img { background: var(--light-grey); overflow: hidden; }
.studio-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.studio-section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.studio-section h2 {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300;
  margin-bottom: 40px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 36px; }
.team-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(100%); transition: filter 0.4s; margin-bottom: 14px;
}
.team-card:hover img { filter: grayscale(0%); }
.team-card h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; }
.team-card p { font-size: 0.75rem; font-weight: 300; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.06em; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.contact-info {
  padding: 100px 60px;
  background: var(--black); color: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 48px;
}
.contact-info h1 em { font-style: italic; color: var(--accent); }
.contact-detail { margin-bottom: 28px; }
.contact-detail label {
  display: block; font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 6px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.82); line-height: 1.7;
}
.contact-form-wrap {
  padding: 100px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form-wrap h2 {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300; margin-bottom: 36px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-grey); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 0;
  border: none; border-bottom: 1px solid var(--border);
  background: transparent; font-family: var(--font-nexa);
  font-size: 0.92rem; font-weight: 300;
  color: var(--black); outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--black); }
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  margin-top: 14px; padding: 13px 36px;
  background: var(--black); color: var(--off-white);
  font-family: var(--font-nexa); font-size: 0.76rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--black); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-submit:hover { background: transparent; color: var(--black); }
.form-success {
  display: none; padding: 14px; background: #f0f7f0;
  border-left: 3px solid #4caf50; font-size: 0.88rem;
  font-weight: 300; color: #2e7d32; margin-top: 14px;
}

/* ══════════════════════════════════════
   AWARDS PAGE
══════════════════════════════════════ */
.awards-page { padding: calc(var(--nav-h) + 60px) 60px 80px; max-width: 860px; margin: 0 auto; }
.awards-page h1 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.award-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.award-year { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 300; color: var(--mid-grey); padding-top: 3px; }
.award-info h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 3px; }
.award-info p { font-size: 0.8rem; font-weight: 300; color: var(--mid-grey); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.93); }
.lb-content { position: relative; max-width: 92vw; max-height: 92vh; z-index: 1; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; display: block; }
.lb-close {
  position: absolute; top: -44px; right: 0;
  font-size: 2rem; color: white; background: none; border: none;
  cursor: pointer; opacity: 0.7; line-height: 1; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: white; background: none; border: none;
  cursor: pointer; opacity: 0.6; padding: 16px; transition: opacity 0.2s;
}
.lb-prev { left: -60px; }
.lb-next { right: -60px; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }

/* ══════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════ */
.page-loader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--off-white); letter-spacing: 0.1em;
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--off-white);
  padding: 64px 40px 32px;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo-text-footer {
  font-family: 'Nexa', 'DM Sans', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  font-style: normal !important;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  display: block;
  margin-bottom: 14px;
}
.logo-text-footer em {
  font-style: normal !important;
  font-weight: 300 !important;
  color: #ffffff !important;
}
.footer-brand p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-links { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.footer-links a {
  font-size: 0.76rem; font-weight: 300; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.footer-contact a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.social-links { display: flex; gap: 18px; margin-top: 16px; }
.social-links a {
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom { padding-top: 22px; font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.section-label {
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 18px;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .project-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 55vw auto; min-height: auto; }
  .hero-text { grid-column: 1; grid-row: 1; padding: 60px 32px 32px; }
  .hero-image { grid-column: 1; grid-row: 2; height: 55vw; }
  .scroll-hint { grid-column: 1; grid-row: 3; padding: 16px 32px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-section { padding: 48px 20px; }
  .project-detail-layout { grid-template-columns: 1fr; }
  .project-sidebar { position: static; padding: 28px 24px; }
  .dg-grid { grid-template-columns: 1fr; }
  .dg-grid img.wide { grid-column: 1; aspect-ratio: 4/3; }
  .studio-hero { grid-template-columns: 1fr; }
  .studio-hero-img { height: 55vw; }
  .studio-hero-text { padding: 52px 32px; }
  .studio-section { padding: 60px 28px; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 32px; }
  .contact-form-wrap { padding: 60px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .lb-prev { left: -36px; }
  .lb-next { right: -36px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 560px) {
  :root { --nav-h: 72px; }
  .project-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .filter-btn { padding: 10px 12px; font-size: 0.68rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 48px 24px 24px; }
  .awards-page { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .logo-group .logo-img { height: 44px; max-width: 54px; }
  .logo-group .brand-name { font-size: 1.5rem; }
}
@media (max-width: 380px) {
  .project-grid { grid-template-columns: 1fr; }
}
