/* ═══════════════════════════════════════
   Eva Rich Design — styles.css
   Colors: #A5917C (tan) · #E6DDD4 (light tan) · #fdfaf7 (cream)
═══════════════════════════════════════ */

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

:root {
  --tan:        #A5917C;
  --tan-light:  #E6DDD4;
  --tan-dark:   #8a7464;
  --cream:      #fdfaf7;
  --dark:       #2c2420;
  --mid:        #6b5c52;
  --radius:     100px;
  --font-head:  'Raleway', sans-serif;
  --font-body:  'Raleway', sans-serif;
  --font-weight: normal;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 80px;
}


.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .02em;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--tan); font-weight: 500; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--dark);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--tan); }
.mobile-close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  line-height: 1;
}

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── FOOTER ── */
footer {
  background: var(--tan-light);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--mid);
}
footer a { color: var(--mid); text-decoration: none; }
footer a:hover { color: var(--tan); }
.footer-social,
.footer-nav { display: flex; gap: 18px; }

@media (max-width: 600px) {
  footer { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
}

/* ── HERO (index) ── */
.hero-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 0 32px;
  gap: 20px;
  min-height: 120px;
}
 
.hero {
  background: var(--tan-light);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 28px 40px 32px 36px;
  width: 60%;
  margin-left: auto;
  margin-right: 0;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 34px);
  font-weight:normal;
  color: var(--mid);
  line-height: 1.2;
  margin-left: 20px;
  margin-top: 10px;
}
.hero .subtitle {
  font-size: 25px;
  color: var(--mid);
  margin-top: 4px;
  font-weight: normal;
  margin-left: 20px;
}
.hero-tagline {
  font-size: 20px;
  color: var(--mid);
  text-align: right;
  margin-top: 20px;
  padding-bottom: 10px;
  flex-shrink: 0;
  margin-right: 10px;
  margin-left: 20px;
}
 
@media (max-width: 600px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 12px;
    min-height: unset;
  }
  .hero { max-width: 80%; }
  .hero-tagline { max-width: 100%; text-align: left; padding-bottom: 0; }
}

/* ── PROJECTS GRID (index) ── */
.projects-section {
  background: var(--tan);
  border-radius: var(--radius);
  margin: 28px 16px;
  padding: 36px 28px 44px;
}
.projects-section h2 {
  font-family: var(--font-head);
  font-size: 24px;
  text-align: center;
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 400;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 680px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  display: block;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(44,36,32,.22);
}
.project-card img {
  width: 100%;
  height: 100%;
  
  display: block;
}
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  text-align: center;
  padding: 0px;
  color: var(--dark);
  line-height: 1.4;
}
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.project-card:hover .overlay { opacity: 1; }
.overlay span { color: #fff; font-size: 12px; font-weight: 500; line-height: 1.3; }

/* ── ABOUT PAGE ── */
.about-wrapper { padding: 36px 40px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
@media (max-width: 560px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-flowers { flex-direction: row; }
}

.about-flowers { display: flex; flex-direction: column; gap: 10px; }
.about-flowers svg { width: 60px; height: 60px; }

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}
.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

/* Contact band */
.contact-band {
  background: var(--tan);
  border-radius: var(--radius);
  margin: 0 16px 28px;
  padding: 28px 36px;
  color: var(--cream);
  margin-top: 50px;
}
.contact-band h3 {
  font-family: var(--font-head);
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 400;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 20px;
  text-align: center;
  font-size: 13px;
}
.contact-grid a { color: var(--cream); text-decoration: none; }
.contact-grid a:hover { text-decoration: underline; }
.contact-label {
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}

/* Resume */
.resume-section { padding: 0 40px 48px; }
.resume-section h2 {
  font-family: var(--font-head);
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: normal;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tan-light);
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background .2s, color .2s;
}
.btn-pdf:hover { background: var(--tan); color: var(--cream); }

.resume-card {
  border: 1px solid var(--tan-light);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 680px;
}
.resume-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tan-light);
  font-weight: normal;
}
.resume-header svg { width: 64px; height: 64px; }
.resume-name {
  font-family: var(--font-head);
  font-size: 22px;
}
.resume-name span {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--tan);
  letter-spacing: .12em;
  margin-top: 2px;
}
.resume-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
}
@media (max-width: 560px) { .resume-body { grid-template-columns: 1fr; } }

.resume-section-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 10px;
  margin-top: 22px;
}
.resume-section-title:first-child { margin-top: 0; }

.resume-entry { margin-bottom: 16px; }
.resume-entry h4 { font-size: 13px; font-weight: 500; }
.resume-entry .org { font-size: 12px; color: var(--mid); }
.resume-entry .date { font-size: 11px; color: var(--tan); margin-top: 2px; }
.resume-entry p { font-size: 12px; color: var(--mid); line-height: 1.6; margin-top: 4px; }

.skills-list { list-style: none; }
.skills-list li { font-size: 12px; color: var(--mid); padding: 3px 0; }
.skills-list li::before { content: '·  '; color: var(--tan); }

/* ── RESPONSIVE PADDING ── */
@media (max-width: 560px) {
  .about-wrapper { padding: 28px 20px 0; }
  .resume-section { padding: 0 20px 40px; }
  .resume-card { padding: 22px; }
  .hero { padding: 28px 20px 36px; }
  .projects-section { padding: 28px 16px 36px; }
}
 .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }

    .proj-title {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 6px;
    }

    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 40px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }

    .label-pair {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      justify-content: center;
      align-items: flex-start;
    }

    .label-pair > div {
      flex: 0 1 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .label-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }

    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      text-align: center;
    }

    .bottles-row {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      justify-content: center;
      align-items: flex-end;
    }

    .bottles-row > div {
      flex: 0 1 240px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .bottles-row img {
      width: 100%;
      border-radius: 0;
      display: block;
    }

    .social-img {
      width: 100%;
      max-width: 480px;
      border-radius: 0;
      display: block;
      margin: 0 auto;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }

    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .label-pair { flex-direction: column; align-items: center; }
      .label-pair > div { flex: 0 1 100%; max-width: 340px; }
      .bottles-row { flex-wrap: wrap; }
      .bottles-row > div { flex: 0 1 45%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 24px;
    }
    .proj-link {
      display: inline-block;
      background: var(--tan);
      color: var(--cream);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 22px;
      border-radius: 6px;
      text-decoration: none;
      margin-bottom: 44px;
      transition: background .2s;
    }
    .proj-link:hover { background: var(--tan-dark); }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 44px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-narrow {
      width: 100%;
      max-width: 420px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 44px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 24px;
    }
    .proj-link {
      display: inline-block;
      background: var(--tan);
      color: var(--cream);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 22px;
      border-radius: 6px;
      text-decoration: none;
      margin-bottom: 44px;
      transition: background .2s;
    }
    .proj-link:hover { background: var(--tan-dark); }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
    .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 44px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 24px;
    }
    .proj-link {
      display: inline-block;
      background: var(--tan);
      color: var(--cream);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 22px;
      border-radius: 6px;
      text-decoration: none;
      margin-bottom: 44px;
      transition: background .2s;
    }
    .proj-link:hover { background: var(--tan-dark); }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }
     .proj-page {
      max-width: 900px;
      padding: 32px 40px 60px;
      margin: 0 auto;
    }
    .proj-client {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .proj-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
      max-width: 660px;
      margin-bottom: 44px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 14px;
      margin-top: 44px;
      text-align: center;
    }
    .proj-img-full {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }
    .proj-img-pair {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }
    .proj-img-pair > div {
      flex: 0 1 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proj-img-pair img {
      width: 100%;
      border-radius: 0;
      display: block;
    }
    .img-caption {
      font-size: 12px;
      color: var(--mid);
      margin-top: 8px;
      margin-bottom: 8px;
      text-align: center;
    }
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color .2s;
      margin-bottom: 28px;
      font-family: var(--font-body);
    }
    .back-btn:hover { color: var(--tan); }
    @media (max-width: 600px) {
      .proj-page { padding: 24px 20px 48px; }
      .proj-img-pair { flex-direction: column; align-items: center; }
      .proj-img-pair > div { flex: 0 1 100%; }
    }