/* ============================================================
   ALFONCE P. — Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f8f6f2;
  --text:     #1a1a1a;
  --caption:  #8a8878;
  --accent:   #b8a88a;
  --light:    #e8e4dc;
  --white:    #ffffff;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --nav-h:    72px;
  --max-w:    1320px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--light);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: invert(0);
}

/* When header is over hero (dark bg), invert logo */
.site-header.over-hero .header-logo img {
  filter: invert(1) brightness(2);
}

.header-logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.3s;
}

.site-header.over-hero .header-logo-name { color: var(--white); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--accent); }

.site-header.over-hero .site-nav a { color: rgba(255,255,255,0.88); }
.site-header.over-hero .site-nav a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ↓';
  font-size: 10px;
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--light);
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text) !important;
  white-space: nowrap;
  transition: background 0.15s, padding-left 0.15s;
}

.dropdown-menu a:hover {
  background: var(--bg);
  padding-left: 30px;
  color: var(--text) !important;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  transition: color 0.3s;
}

.site-header.over-hero .lang-toggle { color: rgba(255,255,255,0.88); }

.lang-toggle span.active { font-weight: 500; }
.lang-toggle span.sep { opacity: 0.35; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.site-header.over-hero .nav-hamburger span { background: var(--white); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
}

.mobile-nav .mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mobile-nav .mobile-sub a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption);
}

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  line-height: 1;
}

.mobile-lang {
  display: flex;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caption);
  cursor: pointer;
}

.mobile-lang span.active { color: var(--text); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.82;
}

/* Page-level hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero .hero-img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}

.page-hero-content {
  position: absolute;
  bottom: 10%;
  left: 60px;
  color: var(--white);
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.page-hero-content .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  opacity: 0.85;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 80px 0; }

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 60px;
}

/* ============================================================
   HOME — WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img { transform: scale(1.04); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0) 55%);
  transition: background 0.4s;
}

.work-card:hover .work-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 60%);
}

.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  color: var(--white);
}

.work-card-info h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.work-card-info p {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ============================================================
   SERIES PAGE — METADATA & DESCRIPTION
   ============================================================ */
.series-intro {
  padding: 60px 0 48px;
}

.series-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: 28px;
}

.series-meta span + span::before { content: ' · '; }

.series-description {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  max-width: 780px;
  color: var(--text);
}

.exhibition-history {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--light);
}

.exhibition-history h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: 16px;
}

.exhibition-history ul { display: flex; flex-direction: column; gap: 8px; }

.exhibition-history li {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
}

.exhibition-history .year {
  font-variant-numeric: tabular-nums;
  color: var(--caption);
  margin-right: 14px;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-section { padding: 0 0 100px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.03); }

/* Span some items full width for rhythm */
.gallery-item.wide { grid-column: span 2; }

.gallery-item.wide img { max-height: 620px; object-fit: cover; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 0 0 60px;
}

.video-section-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-item video {
  width: 100%;
  border-radius: 2px;
  background: var(--text);
}

.video-item .video-caption {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--caption);
  margin-top: 8px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 16px;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body { padding: 80px 0 100px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.about-text .bio-short {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light);
}

.about-text .statement p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 22px;
}

.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.about-portrait img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(8%);
}

/* ============================================================
   CV PAGE
   ============================================================ */
.cv-page { padding: calc(var(--nav-h) + 60px) 0 100px; }

.cv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}

.cv-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--accent);
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.cv-section { margin-bottom: 56px; }

.cv-section-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light);
}

.cv-entry {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light);
}

.cv-entry:last-child { border-bottom: none; }

.cv-year {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--caption);
  padding-top: 2px;
}

.cv-info {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.cv-info em {
  font-style: italic;
  color: var(--text);
}

.cv-info .cv-location {
  display: block;
  font-size: 13px;
  color: var(--caption);
  margin-top: 3px;
}

.cv-info .cv-note {
  display: block;
  font-size: 13px;
  color: var(--caption);
  margin-top: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: calc(var(--nav-h) + 100px) 0 100px;
  min-height: 100vh;
}

.contact-inner {
  max-width: 560px;
}

.contact-page h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact-page .contact-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--caption);
  margin-bottom: 56px;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
}

.contact-item:first-child { border-top: 1px solid var(--light); }

.contact-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caption);
  min-width: 90px;
}

.contact-value {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
}

.contact-value a {
  color: var(--text);
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--light);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption);
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--caption);
  letter-spacing: 0.06em;
}

/* ============================================================
   PROCESS / ESSAY PAGE (Ornamental Writing)
   ============================================================ */
.process-page {
  padding: calc(var(--nav-h) + 64px) 0 100px;
}

.process-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.process-intro h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.process-intro p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}

.process-intro-img {
  padding-top: 8px;
}

.process-intro-img img {
  width: 100%;
  max-width: 380px;
}

.process-divider {
  width: 100%;
  height: 1px;
  background: var(--light);
  margin: 56px 0;
}

.process-point {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--light);
}

.process-point:first-child { border-top: 1px solid var(--light); }

.process-point img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.process-point p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
}

.process-full-text {
  max-width: 760px;
  margin: 56px auto;
}

.process-full-text p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 18px;
}

.process-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 56px 0;
}

.process-two-col img { width: 100%; }

.process-two-col-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.process-two-col-text p { margin-bottom: 14px; }

.process-image-strip {
  width: 100%;
  margin: 40px 0;
}

.process-image-strip img {
  width: 100%;
  height: auto;
}

.process-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.process-image-row img {
  width: 100%;
  border: 4px solid #9a9a9a;
}

.process-concepts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.process-concepts img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ============================================================
   WRITINGS PAGE
   ============================================================ */
.writings-page {
  padding: calc(var(--nav-h) + 64px) 0 100px;
}

.writings-header {
  max-width: 760px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light);
}

.writings-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.writings-header p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
}

.writings-entry {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--light);
}

.writings-entry:last-child { border-bottom: none; }

.writings-entry-img img {
  width: 100%;
  display: block;
}

.writings-entry-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.writings-poem {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
  white-space: pre-line;
}

.writings-poem .couplet {
  margin-bottom: 20px;
}

.writings-poem .fr { color: var(--text); }
.writings-poem .en {
  font-style: italic;
  color: var(--caption);
  font-size: 15px;
}

.writings-signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--caption);
  border-top: 1px solid var(--light);
  padding-top: 20px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { position: static; max-width: 380px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .process-intro { grid-template-columns: 1fr; gap: 40px; }
  .process-two-col { grid-template-columns: 1fr; gap: 32px; }
  .writings-entry { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 24px; }
  .site-header { padding: 0 24px; }

  .site-nav { display: none; }
  .nav-hamburger { display: flex; }

  .work-grid { grid-template-columns: 1fr; gap: 2px; }
  .process-point { grid-template-columns: 1fr; text-align: center; }
  .process-image-row { grid-template-columns: 1fr; }
  .process-concepts { grid-template-columns: 1fr; }
  .process-concepts img { height: 240px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.wide img { max-height: 460px; }

  .page-hero-content { left: 24px; bottom: 8%; }

  .cv-entry { grid-template-columns: 70px 1fr; }

  .site-footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }

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

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero-content { bottom: 10%; }
}
