/* ─────────────────────────────────────────
   🎨 COLORS — edit these to change the whole site's palette
   --terra is the main terracotta red used for headings & buttons
   --moss is the dark green used for the ticker bar
   --cream is the main background color
   --ink is the main text color
   All colors use hex codes — find new ones at coolors.co
───────────────────────────────────────── */
:root {
  --ink:        #1e1208;
  --ink2:       #3d2a14;
  --stone:      #7a6a54;
  --stone-lt:   #b0a090;
  --cream:      #f8f0e3;
  --parch:      #efe5d2;
  --warm:       #e4d6be;
  --terra:      #8c3520;
  --terra2:     #b04828;
  --terra-lt:   #d07858;
  --terra-pale: #e8b090;
  --moss:       #364c28;
  --moss2:      #507040;
  --sage:       #7a9460;
  --sage-lt:    #aec09a;
  --gold:       #8c6e28;
  --gold-lt:    #c09840;
  --mushroom:   #c8a870;
  --night:      #140e04;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2.8rem;
  transition: background .4s, padding .35s, box-shadow .4s;
}
nav.stuck {
  background: rgba(248,240,227,.94);
  backdrop-filter: blur(14px);
  padding: 1rem 2.8rem;
  box-shadow: 0 2px 24px rgba(30,18,8,.07);
  border-bottom: 1px solid rgba(140,53,32,.12);
}

.brand { text-decoration: none; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 700; font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--ink); letter-spacing: -.01em; display: block;
}
.brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.6rem, 1.5vw, .8rem); font-weight: 300;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--stone); display: block; margin-top: 1px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: clamp(.6rem, 1.5vw, .9rem); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink2); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links .cta {
  background: var(--terra); color: var(--cream);
  padding: .42rem 1.1rem; border-radius: 100px;
  transition: background .25s, transform .2s;
}
.nav-links .cta:hover { background: var(--terra2); transform: translateY(-1px); }

.btn {
  font-size: clamp(.7rem, 1vw, 1rem); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .82rem 1.8rem; border-radius: 100px;
  text-decoration: none; display: inline-block;
  transition: all .28s; cursor: pointer; border: none;
}
.btn-filled { background: var(--ink); color: var(--cream); }
.btn-filled:hover { background: var(--terra); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink2); border: 1.5px solid rgba(61,42,20,.25); }
.btn-outline:hover { border-color: var(--ink2); color: var(--ink); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr 1fr; grid-template-areas: "text image";
  position: relative; overflow: hidden;
}

/* left */
.hero-l {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 3rem 5rem 3rem;
  position: relative; z-index: 2;
  background: var(--cream);
  grid-area: text;
}

/* big decorative background letter */
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .8s ease .15s forwards;
}
.hero-eyebrow span {
  font-size: clamp(.9rem, 1.9vw, 1rem); font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--terra2);
}
.eyebrow-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra-lt); flex-shrink: 0;
}

.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(3.4rem, 6.5vw, 6.2rem);
  line-height: .98; letter-spacing: .09em;
  color: var(--ink); margin-bottom: .5rem;
  opacity: 0; animation: fadeUp .9s ease .3s forwards;
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--terra); display: block;
}

.hero-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--stone); margin-bottom: 2.4rem;
  opacity: 0; animation: fadeUp .8s ease .5s forwards;
}

.hero-bio {
  font-size: clamp(1rem, 2vw, 1.3rem); line-height: 1.85; color: var(--ink2);
  max-width: 400px; margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp .8s ease .65s forwards;
}

.hero-actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease .8s forwards;
}

/* right — photo */
.hero-r {
  position: relative; overflow: hidden;
  grid-area: image;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  opacity: 0; animation: fadeIn 1.1s ease .4s forwards;
}
.hero-photo-wrap {
  position: relative; width: 100%; height: 100%;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(248,240,227,.25) 0%, transparent 35%),
              linear-gradient(to top, rgba(20,14,4,.4) 0%, transparent 45%);
}
.hero-badge {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 3;
  background: rgba(248,240,227,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(140,53,32,.15);
  border-radius: 12px; padding: .9rem 1.2rem;
  text-align: center;
  opacity: 0; animation: fadeUp .8s ease 1.2s forwards;
}
.hero-badge .b-num {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 2.2rem; line-height: 1; color: var(--terra);
  display: block;
}
.hero-badge .b-label {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); display: block; margin-top: .25rem;
}

/* London countdown pill */
.hero-london {
  position: absolute; top: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.london-pill {
  background: var(--terra); color: var(--cream);
  border-radius: 100px; padding: .5rem 1.2rem;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(140,53,32,.35);
  display: flex; align-items: center; gap: .5rem;
}
.london-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra-pale);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─────────────────────────────────────────
   WIGGLE DIVIDER
───────────────────────────────────────── */
.wiggle {
  width: 100%; overflow: hidden; line-height: 0;
  background: var(--cream);
}
.wiggle svg { display: block; width: 100%; }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker-wrap {
  background: var(--moss); overflow: hidden;
  padding: .7rem 0; white-space: nowrap;
  border-top: 2px solid rgba(255,255,255,.07);
  border-bottom: 2px solid rgba(255,255,255,.07);
}
.ticker-track {
  display: inline-flex;
  animation: tickMove 32s linear infinite;
}
.tick-item {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(248,240,227,.8); padding: 0 1.8rem;
}
.tick-sep { color: rgba(248,240,227,.3); }
@keyframes tickMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   SECTION SCAFFOLDING
───────────────────────────────────────── */
.section { padding: 7rem 2.8rem; }
.section-sm { padding: 5rem 2.8rem; }
.wrap { max-width: 1220px; margin: 0 auto; }

.section-tag {
  font-size: clamp(.8rem, 1.7vw, .9rem); font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--terra2); margin-bottom: .8rem;
  display: flex; align-items: center; gap: .7rem;
}
.section-tag::before {
  content: '✦'; font-size: .55rem; color: var(--terra-pale);
}

.section-h {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto; font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.015em;
  color: var(--ink);
}
.section-h em { font-style: italic; font-weight: 300; color: var(--terra); }

/* ─────────────────────────────────────────
   ABOUT — THE BIG INTRO
───────────────────────────────────────── */
.about-section { background: var(--parch); }

.about-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: start;
}

/* Photo mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 340px 220px;
  gap: .6rem;
}
.mosaic-photo {
  border-radius: 16px; overflow: hidden;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 20px rgba(30,18,8,.08);
  transition: box-shadow .3s ease;
}
.mosaic-photo:hover {
  box-shadow: 0 8px 30px rgba(30,18,8,.15);
}
.mosaic-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.mosaic-photo:hover img { transform: scale(1.04); }
.mosaic-photo.tall { grid-row: span 2; }
.mosaic-photo.wide { grid-column: span 2; }

/* sticker on mosaic */
.mosaic-sticker {
  position: absolute; bottom: -14px; right: -14px; z-index: 2;
  width: 90px; height: 90px;
  background: var(--gold-lt); border-radius: 50%;
  border: 3px solid var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: .5rem;
  box-shadow: 0 4px 16px rgba(30,18,8,.15);
  animation: spin 20s linear infinite;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.mosaic-sticker-inner {
  animation: spinBack 20s linear infinite;
}
@keyframes spinBack { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
.mosaic-sticker span {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--night); line-height: 1.3;
}

/* About text */
.about-text-wrap { padding-top: .5rem; }

.about-p {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem); line-height: 1.9; color: var(--ink2);
  margin-bottom: 1.3rem;
}
.about-p em { color: var(--terra); font-style: italic; }
.about-p strong { color: var(--ink); font-weight: 500; }

.pull-quote {
  background: var(--terra);
  border-radius: 16px; padding: 1.6rem 1.8rem;
  margin: 2rem 0; position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute; top: -1rem; left: .8rem;
  font-family: 'Fraunces', serif; font-size: 8rem;
  color: rgba(255,255,255,.1); line-height: 1;
  pointer-events: none;
}
.pull-quote p {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--cream); line-height: 1.65; position: relative; z-index: 1;
}
.pull-quote cite {
  display: block; margin-top: .7rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(248,240,227,.6); font-style: normal;
}

.influences-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.chip {
  background: var(--warm);
  border: 1px solid rgba(61,42,20,.12);
  border-radius: 100px; padding: .38rem .9rem;
  font-size: clamp(.8rem, 1.1vw, .9rem); font-weight: 500;
  color: var(--ink2); display: flex; align-items: center; gap: .4rem;
  transition: background .2s;
}
.chip:hover { background: var(--terra-pale); }

/* ─────────────────────────────────────────
   WORK / GALLERY
───────────────────────────────────────── */
.work-section { background: var(--night); }
.work-section .section-tag { color: var(--terra-pale); }
.work-section .section-tag::before { color: var(--terra-lt); }
.work-section .section-h { color: var(--cream); }
.work-section .section-h em { color: var(--terra-lt); }

.work-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.work-note {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1rem;
  color: rgba(176,160,144,.7); max-width: 260px; text-align: right; line-height: 1.6;
}

/* Tabs */
.work-tabs {
  display: flex; gap: .4rem; margin-bottom: 2.8rem; flex-wrap: wrap;
}
.wtab {
  font-size: clamp(.68rem, .8vw, .75rem); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(176,160,144,.6); padding: .55rem 1.3rem;
  border-radius: 100px; border: 1px solid rgba(255,255,255,.08);
  cursor: pointer; background: none;
  transition: all .25s;
}
.wtab:hover { color: rgba(248,240,227,.8); border-color: rgba(255,255,255,.18); }
.wtab.on { background: var(--terra); color: var(--cream); border-color: var(--terra); }

.g-cell {
  position: relative; overflow: hidden;
  background: var(--ink);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30,18,8,.08);
  transition: box-shadow .3s ease;
}
.g-cell:hover {
  box-shadow: 0 8px 30px rgba(30,18,8,.15);
}
.g-cell.g-tall { grid-row: span 2; }
.g-cell.g-wide { grid-column: span 2; grid-row: 2; }
#tab-gnome .g-cell.g-wide { grid-column: 2 / span 2; }
#tab-fairy .g-cell.g-tall { grid-column: 3; grid-row: 1 / span 2; }
#tab-fairy .g-cell.g-wide { grid-column: 1 / span 2; }
#tab-fairy .g-cell:nth-of-type(3) { grid-column: 1; grid-row: 1; }
#tab-fairy .g-cell:nth-of-type(4) { grid-column: 2; grid-row: 1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 12px;
  column-gap: 16px;
}
.gallery-grid.hidden { display: none; }

.g-inner {
  width: 100%; padding-bottom: 90%;
  position: relative; overflow: hidden;
}
.g-cell.g-tall .g-inner { padding-bottom: 200%; }
.g-cell.g-wide .g-inner { padding-bottom: 48%; }

/* Photo cells */
.g-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.g-photo-img {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.g-cell:hover .g-photo { transform: scale(1.06); }

/* SVG illustration cells */
.g-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.g-cell:hover .g-art { transform: scale(1.04); }

/* Hover label */
.g-label {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(20,14,4,.82) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0; transition: opacity .35s;
}
.g-cell:hover .g-label { opacity: 1; }
.g-label-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--cream); margin-bottom: .2rem;
}
.g-label-sub {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(200,168,112,.7);
}

/* ─────────────────────────────────────────
   EXHIBITIONS — photo-forward
───────────────────────────────────────── */
.shows-section { background: var(--cream); }

.shows-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}

/* Stacked photo cards */
.show-photos {
  display: flex; flex-direction: column; gap: .6rem;
}
.show-photo-card {
  border-radius: 14px; overflow: hidden;
  position: relative; height: 240px;
  background: var(--warm);
  transition: transform .35s;
  box-shadow: 0 4px 20px rgba(30,18,8,.08);
}
.show-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30,18,8,.15);
}
.show-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; display: block;
}
.show-photo-card.landscape img { object-position: center 65%; }

.show-card-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,14,4,.75) 0%, transparent 100%);
  padding: 1.2rem 1.2rem .9rem;
}
.show-card-caption strong {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: .98rem; color: var(--cream);
  display: block; margin-bottom: .2rem;
}
.show-card-caption span {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(200,168,112,.8);
}

/* CV list */
.cv-list { margin-top: .5rem; }
.cv-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 1rem; align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(61,42,20,.1);
  transition: background .2s;
}
.cv-row:first-child { border-top: 1px solid rgba(61,42,20,.1); }
.cv-row:hover {
  background: rgba(140,53,32,.04);
  margin: 0 -.8rem; padding-left: .8rem; padding-right: .8rem;
  border-radius: 8px;
}
.cv-yr {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 1rem;
  color: var(--terra);
}
.cv-name strong {
  font-size: .98rem; font-weight: 500;
  color: var(--ink); display: block; margin-bottom: .2rem;
}
.cv-name span {
  font-size: .82rem; color: var(--stone);
  font-style: italic;
}

.badge {
  font-size: .5rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: 100px;
  white-space: nowrap;
}
.badge-juried { background: rgba(140,110,40,.1); color: var(--gold); border: 1px solid rgba(140,110,40,.25); }
.badge-intl   { background: rgba(140,53,32,.08); color: var(--terra); border: 1px solid rgba(140,53,32,.2); }
.badge-up     { background: rgba(54,76,40,.1); color: var(--moss2); border: 1px solid rgba(54,76,40,.25); animation: pulse 2s ease-in-out infinite; }
.badge-group  { background: rgba(122,106,84,.08); color: var(--stone); border: 1px solid rgba(122,106,84,.2); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ─────────────────────────────────────────
   VISITING ARTIST
───────────────────────────────────────── */
.residency-section { background: var(--parch); }

.residency-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.residency-photo-wrap {
  position: relative;
}
.residency-photo {
  width: 100%; border-radius: 18px; overflow: hidden;
  height: 520px;
}
.residency-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%; display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* floating fun card */
.residency-fun-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--moss); color: var(--cream);
  border-radius: 16px; padding: 1.3rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 8px 30px rgba(30,18,8,.2);
  border: 3px solid var(--cream);
}
.residency-fun-card .emoji { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.residency-fun-card p {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: .92rem;
  line-height: 1.5; color: rgba(248,240,227,.9);
}

.res-text-block { padding-top: .5rem; }

.res-p {
  font-size: 1rem; line-height: 1.9; color: var(--ink2);
  margin-bottom: 1.2rem;
}
.res-p em { color: var(--terra); font-style: italic; }
.res-p strong { color: var(--ink); font-weight: 500; }

.res-facts {
  background: var(--cream);
  border-radius: 16px; padding: 1.8rem;
  margin-top: 2rem; margin-bottom: 2rem;
  border: 1px solid rgba(61,42,20,.1);
}
.res-fact {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(61,42,20,.08);
}
.res-fact:last-child { border-bottom: none; padding-bottom: 0; }
.res-fact:first-child { padding-top: 0; }
.res-fact label {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--stone-lt); display: block; margin-bottom: .3rem;
}
.res-fact p {
  font-size: .92rem; color: var(--ink2); line-height: 1.55;
}
.res-fact p strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  background: var(--night);
  position: relative; overflow: hidden;
}

.contact-section .section-tag { color: var(--terra-pale); }
.contact-section .section-tag::before { color: var(--terra-lt); }
.contact-section .section-h { color: var(--cream); }
.contact-section .section-h em { color: var(--terra-lt); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.contact-intro p {
  font-size: .98rem; line-height: 1.9;
  color: rgba(176,160,144,.75); margin-top: 1rem;
}
.contact-intro p em { color: var(--terra-pale); font-style: italic; }

.contact-links { margin-top: 2.5rem; }
.c-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.c-link a {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1rem;
  color: rgba(232,176,144,.9); text-decoration: none;
  transition: color .2s;
}
.c-link a:hover { color: var(--cream); }
.c-link span {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(176,160,144,.4);
}

/* Form */
.form-field { margin-bottom: 1.6rem; }
.form-field label {
  display: block; font-size: .58rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(176,160,144,.5); margin-bottom: .5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .75rem 1rem;
  color: var(--cream); font-family: 'DM Sans', sans-serif;
  font-size: .96rem; outline: none;
  transition: border-color .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(176,160,144,.3); font-style: italic; }
.form-field select option { background: var(--ink2); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(208,120,88,.5);
  background: rgba(255,255,255,.06);
}
.form-field textarea { resize: none; min-height: 110px; line-height: 1.65; }

.btn-send {
  background: var(--terra); color: var(--cream);
  border: none; border-radius: 100px;
  padding: .9rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all .28s;
}
.btn-send:hover { background: var(--terra2); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink); padding: 2.8rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.foot-brand .fn {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(.9rem, 1.6vw, 1.3rem); color: var(--mushroom); display: block;
}
.foot-brand .fs {
  font-size: clamp(.6rem, 1.3vw, .8rem); font-weight: 300;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(176,160,144,.35); display: block; margin-top: .25rem;
}
.foot-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.foot-links a {
  font-size: clamp(.6rem, 1.5vw, .8rem); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(176,160,144,.4); text-decoration: none;
  transition: color .2s;
}
.foot-links a:hover { color: var(--terra-pale); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ─────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
a:focus, button:focus {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────
   LOADING & INTERACTION
───────────────────────────────────────── */
img {
  transition: opacity .3s ease;
}
img:not([src]) { opacity: 0; }
img[src] { opacity: 1; }

/* ─────────────────────────────────────────
   MODERN CSS
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  nav, nav.stuck { padding: 1.2rem 1.6rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-l { padding: 8rem 1.6rem 4rem; }
  .hero-r { height: 70vw; max-height: 520px; }
  .about-layout, .shows-layout, .residency-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-mosaic { grid-template-rows: 280px 180px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-cell.g-tall { grid-row: auto; }
  .g-cell.g-tall .g-inner { padding-bottom: 90%; }
  .g-cell.g-wide .g-inner { padding-bottom: 70%; }
  .section { padding: 5rem 1.6rem; }
  .section-sm { padding: 3.5rem 1.6rem; }
  .residency-photo { height: 380px; }
}
@media (max-width: 640px) {
  .section { padding: 5rem 1rem; }
  .section-sm { padding: 3rem 1.6rem; }
  .hero{
    grid-template-columns: 1fr;
    grid-template-areas:
    "image"
    "text"
    ;
  }
  .hero-l {

  padding: 1rem 3rem 1.5rem 3rem;}
  .brand-sub{color: var(--night);}
  .nav-links { display: none; }
  .gallery-grid {
    display: block;
    width: 100%;
  }
  .gallery-grid .g-cell {
    display: block;
    width: 100%;
    max-width: 100%;
    grid-column: auto !important;
    grid-row: auto !important;
    margin-bottom: 12px;
  }
  .gallery-grid .g-cell:last-child {
    margin-bottom: 0;
  }
  .g-cell.g-tall,
  .g-cell.g-wide {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .g-inner {
    display: block;
    width: 100%;
    padding: 0;
    overflow: visible;
    position: static;
  }
  .g-cell.g-tall .g-inner,
  .g-cell.g-wide .g-inner,
  .g-cell:not(.g-tall):not(.g-wide) .g-inner {
    min-height: unset;
    padding-bottom: 0;
  }
  .g-photo { display: none; }
  .g-photo-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .g-label {
    position: static;
    inset: auto;
    background: transparent;
    opacity: 1;
    padding: 1rem 1rem 1.2rem;
    margin: 0;
  }
  .gallery-grid .g-cell {
    display: block;
    width: 100%;
    max-width: 100%;
    grid-column: auto !important;
    grid-row: auto !important;
    margin-bottom: 20px;
  }
  .gallery-grid .g-cell:last-child {
    margin-bottom: 0;
  }
  .g-label-title { margin-bottom: .35rem; font-size: 1.1rem; }
  .g-label-sub { letter-spacing: .1em; font-size: .8rem; }
  .about-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic-photo { height: auto; }
  .mosaic-photo img { object-position: top; }
  .mosaic-photo.tall { grid-row: auto; }
  .shows-layout { grid-template-columns: 1fr; }
  .residency-fun-card { position: static; margin-top: 1rem; max-width: 100%; }
}

/* ─────────────────────────────────────────
   PHOTO BANNER STRIP
───────────────────────────────────────── */
.photo-banner {
  display: flex;
  height: 340px;
  overflow: hidden;
  gap: 3px;
  background: var(--night);
}
.photo-banner-cell {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.photo-banner-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: brightness(.9) saturate(.92);
}
.photo-banner-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
/* overlay label on hover */
.photo-banner-cell .pb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,14,4,.75) 0%, transparent 100%);
  padding: 1rem .9rem .7rem;
  opacity: 0; transition: opacity .35s;
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: .9rem;
  color: var(--cream);
}
.photo-banner-cell:hover .pb-label { opacity: 1; }
/* wide middle cell */
.photo-banner-cell.pb-wide { flex: 1.6; }
@media (max-width: 640px) {
  .photo-banner { height: 200px; }
  .photo-banner-cell:not(.pb-wide) { display: none; }
  .photo-banner-cell.pb-wide { flex: 1; }
}

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
  z-index: 500;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  pointer-events: none;
}
.mobile-drawer.open { pointer-events: all; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,14,4,.45);
  opacity: 0; transition: opacity .35s;
}
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
  padding: 5rem 2rem 2.5rem;
  border-left: 1px solid rgba(140,53,32,.1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-links { list-style: none; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.drawer-links a {
  display: block; padding: .85rem 0;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink2); text-decoration: none;
  border-bottom: 1px solid rgba(61,42,20,.08);
  transition: color .2s, padding-left .2s;
}
.drawer-links a:hover { color: var(--terra); padding-left: .4rem; }
.drawer-links .drawer-cta {
  margin-top: 1rem;
  background: var(--terra); color: var(--cream);
  padding: .75rem 1.4rem; border-radius: 100px;
  text-align: center; border-bottom: none; font-size: .8rem;
  transition: background .25s;
}
.drawer-links .drawer-cta:hover { background: var(--terra2); padding-left: 0; }
.drawer-brand { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(61,42,20,.1); }
.drawer-brand span { display: block; font-family: 'Fraunces', serif; font-weight: 700; font-size: .95rem; color: var(--stone); }
.drawer-brand small { font-size: .6rem; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: var(--stone-lt); }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
}

/* ─────────────────────────────────────────
   CV PAGE STYLES
───────────────────────────────────────── */

/* CV PAGE HERO */
.cv-hero {
  padding: 10rem 2.8rem 5rem;
  background: var(--parch);
  position: relative;
  overflow: hidden;
}

.cv-hero-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
  position: relative; z-index: 1;
}
.cv-eyebrow {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--terra2); margin-bottom: .8rem;
  display: flex; align-items: center; gap: .5rem;
  opacity: 0; animation: fadeUp .7s ease .1s forwards;
}
.cv-eyebrow::before { content: '✦'; font-size: .5rem; color: var(--terra-pale); }
.cv-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .95; letter-spacing: .06em;
  color: var(--ink);
  opacity: 0; animation: fadeUp .8s ease .25s forwards;
}
.cv-h1 em { font-style: italic; color: var(--terra); }
.cv-hero-meta {
  text-align: right;
  opacity: 0; animation: fadeUp .7s ease .4s forwards;
}
.cv-hero-meta p {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1rem;
  color: var(--stone); line-height: 1.7;
}
.cv-print-btn {
  margin-top: 1rem;
  display: inline-block;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); border: 1.5px solid rgba(140,53,32,.3);
  padding: .45rem 1.1rem; border-radius: 100px;
  cursor: pointer; background: none;
  transition: all .25s;
}
.cv-print-btn:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }

/* MAIN CV LAYOUT */
.cv-body {
  max-width: 1220px; margin: 0 auto;
  padding: 5rem 2.8rem 7rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0 5rem;
  align-items: start;
}

/* SIDEBAR */
.sidebar-block {
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp .7s ease forwards;
}
.sidebar-block:nth-child(1) { animation-delay: .3s; }
.sidebar-block:nth-child(2) { animation-delay: .4s; }
.sidebar-block:nth-child(3) { animation-delay: .5s; }
.sidebar-block:nth-child(4) { animation-delay: .6s; }

.sidebar-label {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--stone-lt);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(61,42,20,.12);
  margin-bottom: .9rem;
}
.sidebar-block p {
  font-size: .9rem; color: var(--ink2); line-height: 1.8;
}
.sidebar-block a {
  color: var(--terra); text-decoration: none; letter-spacing: 0.07rem;
  font-family: 'Instrument Serif', serif;
}
.sidebar-block a:hover { color: var(--terra2); }

.skills-list {
  list-style: none; display: flex; flex-direction: column; gap: .45rem;
}
.skills-list li {
  font-size: .88rem; color: var(--ink2); line-height: 1.5;
  padding-left: .9rem; position: relative;
}
.skills-list li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--terra-pale); font-size: 1.1rem; line-height: 1.3;
}

.chips-wrap { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip-sm {
  background: var(--warm);
  border: 1px solid rgba(61,42,20,.12);
  border-radius: 100px; padding: .28rem .75rem;
  font-size: .72rem; font-weight: 500; color: var(--ink2);
}

/* MAIN CONTENT */
.cv-section {
  margin-bottom: 4rem;
  opacity: 0; animation: fadeUp .75s ease forwards;
}
.cv-section:nth-child(1) { animation-delay: .35s; }
.cv-section:nth-child(2) { animation-delay: .45s; }
.cv-section:nth-child(3) { animation-delay: .55s; }
.cv-section:nth-child(4) { animation-delay: .65s; }
.cv-section:nth-child(5) { animation-delay: .75s; }

.cv-section-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: .7rem;
  border-bottom: 1.5px solid rgba(61,42,20,.1);
}
.cv-section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--ink); letter-spacing: -.01em;
}
.cv-section-head .section-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra-lt); flex-shrink: 0;
}

/* Exhibition rows */
.cv-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: .8rem 1.2rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61,42,20,.07);
  transition: background .2s;
}
.cv-row:last-child { border-bottom: none; }
.cv-row:hover {
  background: rgba(140,53,32,.03);
  margin: 0 -.8rem; padding-left: .8rem; padding-right: .8rem;
  border-radius: 8px;
}
.cv-yr {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 1rem;
  color: var(--terra); white-space: nowrap;
}
.cv-name strong {
  font-size: .97rem; font-weight: 500;
  color: var(--ink); display: block; margin-bottom: .2rem;
}
.cv-name span {
  font-size: .82rem; color: var(--stone); font-style: italic;
}
.cv-name .cv-detail {
  font-size: .8rem; color: var(--stone-lt);
  font-style: normal; margin-top: .2rem;
  display: block;
}

.badge {
  font-size: .5rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: 100px;
  white-space: nowrap; align-self: start;
}
.badge-juried { background: rgba(140,110,40,.1); color: var(--gold); border: 1px solid rgba(140,110,40,.25); }
.badge-intl   { background: rgba(140,53,32,.08); color: var(--terra); border: 1px solid rgba(140,53,32,.2); }
.badge-up     { background: rgba(54,76,40,.1); color: var(--moss2); border: 1px solid rgba(54,76,40,.25); animation: pulse 2s ease-in-out infinite; }
.badge-group  { background: rgba(122,106,84,.08); color: var(--stone); border: 1px solid rgba(122,106,84,.2); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

.badge-stack { display: flex; flex-direction: column; gap: .3rem; align-items: flex-end; }

/* Education / other plain rows */
.plain-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: .8rem 1.2rem;
  align-items: baseline;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(61,42,20,.07);
}
.plain-row:last-child { border-bottom: none; }
.plain-row .cv-yr { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--terra); }
.plain-row .cv-name strong { font-size: .97rem; font-weight: 500; color: var(--ink); display: block; margin-bottom: .2rem; }
.plain-row .cv-name span { font-size: .82rem; color: var(--stone); font-style: italic; }
.plain-row .cv-name .cv-detail { font-size: .8rem; color: var(--stone-lt); display: block; margin-top: .15rem; }

/* Statement block */
.statement-block {
  background: var(--parch);
  border-radius: 16px; padding: 2rem 2.2rem;

  margin-bottom: 4rem;
  opacity: 0; animation: fadeUp .75s ease .3s forwards;
}
.statement-block p {
  font-family: 'Instrument Serif', serif;
  font-size: 1.08rem; letter-spacing: 0.1rem;
  color: var(--ink2); line-height: 1.85;
}
.statement-block p + p { margin-top: 1rem; }

/* DIVIDER */
.wiggle-down {
  background: var(--cream); margin-bottom: -2px;
}

@media (max-width: 900px) {
  .cv-body { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.6rem 5rem; }
  .cv-hero { padding: 8rem 1.6rem 4rem; }
  .cv-hero-meta { text-align: left; }
}
@media (max-width: 640px) {
  nav, nav.stuck { padding: 1.2rem 1.6rem; }
  .nav-links { display: none; }
  .cv-row { grid-template-columns: 50px 1fr; }
  .cv-row .badge-stack { display: none; }
}

@media print {
  nav, footer, .cv-print-btn, .cv-hero::after { display: none !important; }
  body { font-size: 11pt; }
  .cv-hero { padding: 2rem 0 1.5rem; background: none; }
  .cv-body { padding: 2rem 0; }
  .cv-section, .sidebar-block, .statement-block { opacity: 1; animation: none; }
}