/* Cormorant Garamond — variable, self-hosted */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* Inter — variable, self-hosted */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Purple — accent (links, CTAs, interactive) */
  --purple-100: #F7F3F8;
  --purple-200: #E4D9E5;
  --purple-300: #CAABCF;
  --purple-400: #B48FBB;
  --purple-500: #A977B1;
  --purple-600: #8A5A92;
  --purple-700: #6B4072;
  --purple-800: #4C2B52;
  --purple-900: #2E1733;

  /* Green — brand (name, badges, footer bg) */
  --green-100: #EBF0E8;
  --green-200: #CDD9C7;
  --green-300: #A8BF9F;
  --green-400: #7A9C70;
  --green-500: #567446;
  --green-600: #3F612D;
  --green-700: #334E24;
  --green-800: #243718;
  --green-900: #141F0E;

  /* Grey — neutral (body, UI, dividers) */
  --grey-100: #FDFAF6;
  --grey-200: #EDEAE5;
  --grey-300: #D8D5CF;
  --grey-400: #A8A39C;
  --grey-500: #736E68;
  --grey-600: #575249;
  --grey-700: #3A3737;
  --grey-800: #2A2828;
  --grey-900: #1A1B1F;
  --white:    #FFFFFF;

  /* Semantic roles */
  --bg:              var(--grey-100);
  --bg-warm:         var(--grey-100);
  --bg-surface:      var(--white);
  --bg-inverse:      var(--green-600);

  --fg-heading:      var(--grey-900);
  --fg-body:         var(--grey-900);
  --fg-secondary:    var(--grey-600);
  --fg-placeholder:  var(--grey-400);
  --fg-on-dark:      var(--grey-100);

  --link:            var(--purple-700);
  --link-active:     var(--purple-800);
  --link-hover-ul:   var(--purple-500);
  --highlight-bg:    var(--purple-300);

  --brand:           var(--green-600);
  --brand-support:   var(--green-500);
  --badge-bg:        var(--green-300);
  --text-on-brand:   var(--green-900);

  --divider:         var(--grey-300);
  --hairline:        1px solid var(--grey-300);

  /* Fonts — Cormorant for headings, Inter for body/UI */
  --font-heading: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-ui:      var(--font-body);
  --font-display: var(--font-heading); /* back-compat alias */

  /* Spacing */
  --s-xxs: 4px;
  --s-xs:  8px;
  --s-s:   12px;
  --s-m:   16px;
  --s-l:   24px;
  --s-xl:  32px;
  --s-2xl: 48px;
  --s-3xl: 64px;
  --s-4xl: 96px;
  --s-5xl: 128px;

  /* Radius */
  --r-xs:   4px;
  --r-s:    8px;
  --r-m:    12px;
  --r-l:    16px;
  --r-full: 999px;

  /* Motion */
  --ease-standard:   cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1.2);
  --dur-fast: 120ms;
  --dur:      200ms;
  --dur-slow: 320ms;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(0,0,0,0.06);
  --elev-2: 0 4px 12px rgba(0,0,0,0.08);
  --elev-3: 0 12px 32px rgba(0,0,0,0.10);

  /* Back-compat aliases — keep older pages resolving */
  --cw-cream:       var(--grey-100);
  --cw-paper:       var(--white);
  --cw-ink:         var(--grey-900);
  --cw-ink-soft:    var(--grey-800);
  --cw-stone:       var(--grey-500);
  --cw-stone-2:     var(--grey-400);
  --cw-divider:     var(--grey-300);
  --cw-border:      var(--purple-200);
  --cw-forest:      var(--green-500);
  --cw-forest-deep: var(--green-600);
  --cw-forest-tint: var(--green-100);
  --cw-plum:        var(--purple-900);
  --cw-plum-soft:   var(--purple-800);
  --fg1:            var(--grey-900);
  --fg2:            var(--grey-900);
  --fg-muted:       var(--grey-600);
  --accent:         var(--brand);
  --chip-bg:        var(--grey-200);
  --chip-fg:        var(--grey-700);
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--fg-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 76px;
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Wordmark — Cormorant Garamond 500, green-600 */
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: var(--green-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

/* Nav links — Cormorant Garamond 500 18px, underline on hover */
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--grey-700);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: color var(--dur) var(--ease-standard);
}

.nav-links a::after {
  content: '';
  height: 1px;
  width: 100%;
  background: var(--grey-900);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-standard);
}

.nav-links a:hover {
  color: var(--grey-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
}

.nav-mobile-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--grey-900);
  width: 28px;
  height: 28px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-600);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.mobile-nav a {
  color: var(--grey-100);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--grey-100);
  width: 28px;
  height: 28px;
}

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-content {
  padding-top: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--grey-100);
  padding: 120px 64px;
  display: flex;
  justify-content: center;
}

.hero-text {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Display — Cormorant Garamond 500, 64px */
.hero-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--grey-900);
  margin: 0;
  text-wrap: pretty;
}

/* Body Large — Inter 300, 18px/1.75 */
.hero-body {
  margin-top: 24px;
  max-width: 720px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--grey-900);
}

/* CTA link — Inter 400, 15px, purple-700 */
.hero-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--purple-700);
  transition: color var(--dur) var(--ease-standard);
}

.hero-cta:hover {
  text-decoration: underline;
  text-decoration-color: var(--purple-500);
  text-underline-offset: 4px;
  color: var(--purple-700);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section {
  padding: var(--s-4xl) 64px;
  background: var(--grey-100);
}

/* Label — Inter 500, 12px, uppercase */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--s-m);
}

/* H1-size section title — Cormorant 500, 40px */
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: var(--s-xl);
}

/* =============================================
   WORK / PROJECTS
   ============================================= */
#work {
  background: var(--grey-100);
  padding: var(--s-4xl) 64px;
}

/* Chips — kept for project detail pages */
.project-tags {
  display: flex;
  gap: var(--s-xs);
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  background: var(--grey-200);
  color: var(--grey-700);
  padding: 4px 10px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
}

.tag.outline {
  background: var(--chip-bg);
  color: var(--chip-fg);
}

.project-rows {
  display: flex;
  flex-direction: column;
}

.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 48px 0;
  cursor: pointer;
  color: inherit;
  transition: opacity var(--dur) var(--ease-standard);
}

.project-row:hover {
  opacity: 0.85;
}

.project-row:nth-child(even) {
  direction: rtl;
}

.project-row:nth-child(even) > * {
  direction: ltr;
}

.project-row-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r-xs);
}

.project-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-standard);
  display: block;
}

.project-row:hover .project-row-image img {
  transform: scale(1.03);
}

.project-row-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Eyebrow — Inter 500, 12px, uppercase, grey-500 */
.project-row-num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* Title — Cormorant Garamond 500, 28px */
.project-row-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--grey-900);
  margin: 0;
}

/* Description — Inter 300, 16px/1.7 */
.project-row-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  background: var(--grey-100);
  color: var(--grey-900);
  padding-bottom: calc(var(--s-4xl) * 2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3xl);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Quote — Inter 300, 16px/1.7 */
.testimonial-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Name — Inter 500, 14px */
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey-900);
}

/* Role — Inter 500, 12px, uppercase, grey-500 */
.testimonial-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--green-600);
  padding: 64px;
  color: var(--grey-100);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3xl);
  margin-bottom: 48px;
}

.footer-contact-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  color: var(--grey-100);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--s-m);
  flex-shrink: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-100);
  transition: opacity var(--dur) var(--ease-standard);
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-social-link img,
.footer-social-link svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-xl);
  border-top: 1px solid rgba(253,250,246,0.2);
}

/* Footer nav — Inter 500, 12px, uppercase, grey-100 */
.footer-nav {
  display: flex;
  gap: 48px;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-100);
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease-standard);
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(253,250,246,0.6);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  padding: 100px 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
  background: var(--grey-100);
}

.about-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-xl);
  color: var(--grey-900);
}

.about-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
  margin-bottom: var(--s-m);
}

.about-contact {
  display: flex;
  gap: var(--s-m);
  margin-top: var(--s-xl);
}

.about-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  transition: opacity var(--dur) var(--ease-standard);
}

.about-contact a:hover {
  opacity: 0.7;
}

.about-contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-image-col img {
  width: 100%;
  border-radius: var(--r-m);
  object-fit: cover;
  max-height: 600px;
}

.about-section {
  padding: 80px 64px;
  background: var(--grey-100);
}

.about-section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  margin-bottom: var(--s-xl);
  color: var(--grey-900);
}

.about-section p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
  max-width: 720px;
  margin-bottom: var(--s-m);
}

.about-venn {
  margin-top: 40px;
  max-width: 480px;
}

/* =============================================
   PROJECT DETAIL PAGES
   ============================================= */
.project-hero {
  padding: 80px 64px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.project-hero-tags {
  display: flex;
  gap: var(--s-s);
  margin-bottom: var(--s-l);
  flex-wrap: wrap;
}

.project-hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-l);
  color: var(--grey-900);
}

.project-hero-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--grey-600);
  max-width: 680px;
  margin-bottom: var(--s-2xl);
}

.project-meta {
  display: flex;
  gap: 48px;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  padding: var(--s-l) 0;
  margin-bottom: 56px;
}

.project-meta-item label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: block;
  margin-bottom: 6px;
}

.project-meta-item span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
}

.project-thumbnail {
  width: 100%;
  border-radius: var(--r-m);
  overflow: hidden;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 64px;
}

.project-thumbnail img {
  width: 100%;
  border-radius: var(--r-m);
  border: var(--hairline);
}

.project-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 64px 100px;
}

.project-body h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 56px 0 var(--s-m);
  color: var(--grey-900);
}

.project-body h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin: var(--s-xl) 0 var(--s-s);
  color: var(--grey-900);
}

.project-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
  margin-bottom: var(--s-m);
  max-width: 720px;
}

.project-body ul, .project-body ol {
  padding-left: 24px;
  margin-bottom: var(--s-m);
}

.project-body li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-900);
  margin-bottom: var(--s-xs);
  max-width: 700px;
}

.project-body img {
  max-width: 100%;
  border-radius: var(--r-s);
  margin: var(--s-l) 0;
  border: var(--hairline);
}

.project-body .highlight-box {
  background: var(--grey-200);
  border-left: 3px solid var(--green-600);
  padding: var(--s-m) var(--s-l);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  margin: var(--s-l) 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  color: var(--grey-900);
}

.project-nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 64px;
  border-top: var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-600);
  transition: opacity var(--dur) var(--ease-standard);
}

.project-nav a:hover {
  opacity: 0.7;
}

/* Table of Contents */
.toc {
  background: var(--grey-200);
  border-radius: var(--r-s);
  padding: var(--s-xl) var(--s-2xl);
  margin-bottom: var(--s-2xl);
  max-width: 400px;
}

.toc h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-m);
  color: var(--grey-500);
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: var(--s-xs);
}

.toc a {
  color: var(--grey-900);
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1px;
  transition: color var(--dur) var(--ease-standard);
}

.toc a:hover {
  color: var(--green-600);
}

/* Stats */
.stat-highlight {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s-s);
  color: var(--grey-900);
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-600);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-xl);
  background: var(--grey-200);
  border-radius: var(--r-m);
  padding: var(--s-2xl);
  margin: var(--s-xl) 0;
  max-width: 720px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 80px 24px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-body {
    font-size: 16px;
  }

  .section {
    padding: 64px 24px;
  }

  #work {
    padding: 64px 24px;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: var(--s-m);
    direction: ltr !important;
  }

  .project-row > * {
    direction: ltr !important;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--s-m);
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-m);
  }

  footer {
    padding: 60px 24px 40px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .about-image-col {
    order: -1;
  }

  .about-section {
    padding: 48px 24px;
  }

  .project-hero {
    padding: 60px 24px 40px;
  }

  .project-thumbnail {
    padding: 0 24px;
  }

  .project-body {
    padding: 0 24px 80px;
  }

  .project-meta {
    flex-wrap: wrap;
    gap: var(--s-l);
  }

  .project-nav {
    padding: 32px 24px;
  }

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

/* =============================================
   UTILITIES
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
