:root {
  --ivory: #f7f5ef;
  --paper: #efe8dc;
  --paper-soft: #fbfaf6;
  --navy: #0f2946;
  --navy-soft: #173656;
  --ink: #16253a;
  --line: #d9d4ca;
  --terracotta: #b94725;
  --sage: #536b3f;
  --blue: #27679d;
  --muted: #6e6a63;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 7%, rgba(232, 229, 221, 0.48), transparent 25rem),
    radial-gradient(circle at 82% 24%, rgba(184, 193, 194, 0.18), transparent 28rem),
    linear-gradient(180deg, #faf9f5 0%, #f4efe6 56%, #f8f6f0 100%),
    var(--ivory);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

svg {
  display: block;
}

.section-pad {
  width: min(88rem, calc(100% - 6rem));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 2fr) auto;
  align-items: start;
  gap: 1.2rem;
  width: min(88rem, calc(100% - 6rem));
  margin: 0 auto;
  padding: 2.1rem 0 1.2rem;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem clamp(0.6rem, 1.15vw, 1.25rem);
  justify-content: flex-end;
  padding-top: 0.55rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding-bottom: 0.8rem;
}

.primary-nav a::after {
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  padding-top: 0.55rem;
}

.social-links a,
.footer-socials a {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
}

.social-links svg,
.footer-socials svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-socials .brand-icon {
  fill: currentColor;
  stroke: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(26rem, 0.88fr) minmax(32rem, 1.35fr);
  gap: 2.5rem;
  align-items: center;
  min-height: 34rem;
  padding: 2.4rem 0 1.6rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.2rem, 5.1vw, 5.65rem);
  font-weight: 400;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 32rem;
  margin: 1.9rem 0 2.25rem;
  color: #24334a;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.btn-primary {
  background: var(--navy);
  color: #fffaf1;
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.78);
  color: var(--navy);
}

.hero-art {
  position: relative;
  min-height: 28.5rem;
  overflow: hidden;
  margin: 0;
  border: 0;
  background: transparent;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-art::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.74), rgba(247, 245, 239, 0.02) 18%, rgba(247, 245, 239, 0) 76%, rgba(247, 245, 239, 0.54)),
    linear-gradient(180deg, rgba(247, 245, 239, 0.08), rgba(247, 245, 239, 0.18));
}

.hero-art::after {
  inset: -1px;
  box-shadow: inset 0 0 2.6rem 2rem var(--ivory);
}

.hero-art img {
  display: block;
  width: 100%;
  height: 28.5rem;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(0.98);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  padding-top: 1.35rem;
  padding-bottom: 2.1rem;
}

.feature-card {
  min-height: 21.5rem;
  padding: 2.6rem 2rem 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
  text-align: center;
}

.feature-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.2rem;
  place-items: center;
}

.feature-icon svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.terracotta { color: var(--terracotta); }
.sage { color: var(--sage); }
.blue { color: var(--blue); }
.navy { color: var(--navy); }

.feature-card h2,
.project-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.22;
}

.feature-card h2 {
  font-size: 1.35rem;
}

.feature-card p {
  min-height: 5.7rem;
  margin: 0.9rem auto 1.55rem;
  max-width: 14rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  line-height: 1;
}

.publication-link {
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.projects {
  padding-top: 0.9rem;
  padding-bottom: 2.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0.85rem;
}

.eyebrow {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.heading-line {
  display: block;
  width: 1.8rem;
  height: 1px;
  margin-top: 0.45rem;
  background: var(--navy);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.project-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
}

.project-image {
  position: relative;
  height: 13.3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image span {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 2;
  color: rgba(15, 41, 70, 0.46);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-placeholder {
  background:
    radial-gradient(circle at 44% 52%, rgba(185, 71, 37, 0.9) 0.16rem, transparent 0.2rem),
    radial-gradient(circle at 20% 36%, rgba(255, 253, 248, 0.8) 0.12rem, transparent 0.16rem),
    radial-gradient(circle at 72% 30%, rgba(255, 253, 248, 0.7) 0.12rem, transparent 0.16rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.24) 1px, transparent 1px),
    #102030;
  background-size: auto, auto, auto, 3rem 3rem, auto;
}

.data-placeholder::after {
  position: absolute;
  inset: 2rem;
  border: 1px dashed rgba(255, 253, 248, 0.22);
  content: "";
}

.watercolor-placeholder {
  background:
    radial-gradient(ellipse at 24% 76%, rgba(83, 107, 63, 0.22), transparent 7rem),
    radial-gradient(ellipse at 72% 24%, rgba(39, 103, 157, 0.2), transparent 8rem),
    linear-gradient(180deg, rgba(248, 243, 233, 0.1), rgba(248, 243, 233, 0.8)),
    var(--paper);
}

.watercolor-placeholder::before {
  position: absolute;
  right: 2rem;
  bottom: 4.5rem;
  left: 2rem;
  height: 4.8rem;
  border-top: 1px solid rgba(15, 41, 70, 0.18);
  border-bottom: 1px solid rgba(15, 41, 70, 0.12);
  background: rgba(39, 103, 157, 0.12);
  content: "";
}

.notebook-placeholder {
  background:
    linear-gradient(90deg, rgba(15, 41, 70, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, transparent 2rem, rgba(15, 41, 70, 0.08) 2.08rem, transparent 2.16rem),
    radial-gradient(circle at 84% 20%, rgba(185, 71, 37, 0.13), transparent 6rem),
    #f3eadc;
  background-size: 2.4rem 100%, 100% 2.2rem, auto, auto;
}

.project-body {
  padding: 1.35rem 1.35rem 1.45rem;
}

.project-card h3 {
  font-size: 1.18rem;
}

.project-card p {
  margin: 0.65rem 0 1rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.72;
}

.bottom-section {
  display: grid;
  grid-template-columns: 1.28fr 0.8fr 0.95fr;
  gap: 1.6rem;
  padding-top: 0.8rem;
  padding-bottom: 2.3rem;
}

.about-panel,
.news-panel,
.gallery-panel {
  border-left: 1px solid var(--line);
  padding-left: 1.35rem;
}

.about-panel {
  border-left: 0;
  padding-left: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.35rem;
  margin-top: 1rem;
}

.portrait-image {
  min-height: 15.5rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.portrait-image img {
  display: block;
  width: 100%;
  height: 15.5rem;
  object-fit: cover;
  object-position: center 28%;
}

.about-content p {
  margin: 0 0 1.2rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.72;
}

.about-content .btn {
  width: 100%;
  min-height: 3rem;
  padding-inline: 1.1rem;
  font-size: 0.72rem;
}

.news-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.15rem;
}

.news-list a {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 0.75rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1.6;
}

.news-list time {
  color: var(--navy);
}

.mini-gallery {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0.95rem;
}

.mini-placeholder {
  min-height: 6.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.mini-placeholder.artwork {
  overflow: hidden;
}

.mini-placeholder.artwork img {
  display: block;
  width: 100%;
  height: clamp(13rem, 24vw, 17rem);
  object-fit: cover;
}

.mini-placeholder.city {
  background:
    linear-gradient(180deg, rgba(39, 103, 157, 0.2), transparent 45%),
    linear-gradient(90deg, rgba(15, 41, 70, 0.13) 10%, transparent 10% 22%, rgba(15, 41, 70, 0.12) 22% 34%, transparent 34% 54%, rgba(15, 41, 70, 0.12) 54% 68%, transparent 68%),
    var(--paper);
}

.mini-placeholder.harbor {
  background:
    radial-gradient(ellipse at 52% 65%, rgba(39, 103, 157, 0.18), transparent 4rem),
    linear-gradient(180deg, rgba(39, 103, 157, 0.14), transparent 48%, rgba(83, 107, 63, 0.13) 49%),
    var(--paper);
}

.mini-placeholder.park {
  background:
    radial-gradient(ellipse at 46% 32%, rgba(83, 107, 63, 0.22), transparent 3.5rem),
    linear-gradient(90deg, transparent 49%, rgba(15, 41, 70, 0.18) 50%, transparent 51%),
    var(--paper);
}

.mini-placeholder.floral {
  background:
    radial-gradient(circle at 33% 48%, rgba(185, 71, 37, 0.2), transparent 1.8rem),
    radial-gradient(circle at 68% 42%, rgba(83, 107, 63, 0.18), transparent 2.2rem),
    var(--paper);
}

.site-footer {
  margin-top: 0.4rem;
  padding: 1.8rem 0 1.55rem;
  background:
    radial-gradient(circle at 16% 50%, rgba(39, 103, 157, 0.16), transparent 20rem),
    var(--navy);
  color: #fff8ea;
}

.footer-quote {
  margin: 0;
  text-align: center;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-style: italic;
}

.footer-rule {
  width: 2rem;
  height: 1px;
  margin: 1rem auto 1.1rem;
  background: rgba(255, 248, 234, 0.65);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(88rem, calc(100% - 6rem));
  margin: 0 auto;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
  }

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

  .hero-art {
    min-height: 24rem;
  }

  .hero-art img {
    height: 24rem;
  }

  .feature-grid,
  .bottom-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-panel {
    border-left: 0;
    padding-left: 0;
  }
}

.pottery-hero {
  display: grid;
  grid-template-columns: minmax(25rem, 0.95fr) minmax(20rem, 0.65fr);
  gap: 3rem;
  align-items: center;
  padding: 3.8rem 0 2.7rem;
  border-top: 1px solid var(--line);
}

.pottery-hero h1 {
  margin: 0.65rem 0 1.35rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.pottery-hero p,
.pottery-featured p,
.pottery-closing p {
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.82;
}

.pottery-hero-copy p {
  max-width: 45rem;
}

.pottery-hero-image,
.pottery-orbit figure,
.pottery-featured figure {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 45px rgba(15, 41, 70, 0.06);
}

.pottery-hero-image {
  padding: 1rem;
}

img.pottery-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.pottery-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 2.5rem;
}

.pottery-feature-cards article,
.pottery-closing article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.68);
  padding: 2rem;
}

.pottery-feature-cards article {
  text-align: center;
}

.pottery-feature-cards span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--terracotta);
  font-size: 2.1rem;
  line-height: 1;
}

.pottery-feature-cards h2,
.pottery-featured h2,
.pottery-featured h3,
.pottery-closing h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
}

.pottery-feature-cards h2 {
  font-size: 1.45rem;
}

.pottery-feature-cards p {
  margin: 0.75rem auto 0;
  max-width: 18rem;
  color: var(--muted);
}

.pottery-gallery-section {
  padding: 1.4rem 0 4.4rem;
}

.pottery-hover-stage {
  display: grid;
  min-height: clamp(25rem, 50vw, 39rem);
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 24%, rgba(184, 79, 49, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 18%, rgba(39, 103, 157, 0.16), transparent 20rem),
    linear-gradient(135deg, #15171a, #20201d 54%, #15171a);
  padding: clamp(2rem, 6vw, 5rem);
  perspective: 2000px;
}

.pottery-hover-stage-small {
  min-height: clamp(21rem, 38vw, 31rem);
}

.pottery-hover-gallery {
  --p: 6;
  --z: 5;
  --hover-intensity: clamp(4rem, 12vw, 10rem);
  --hover-smoothness: 70ms;
  --fall-smoothness: 260ms;
  --r: calc(var(--max-z) * (var(--p) - 1) + var(--z));
  --r-n: calc((var(--r) - 1) / (var(--max-z) * var(--max-p) - 1));
  --dir: 0deg;
  display: flex;
  width: min(68rem, 100%);
  height: clamp(14rem, 24vw, 20rem);
  align-items: flex-end;
  transform-style: preserve-3d;
}

.pottery-hover-gallery-details {
  width: min(52rem, 100%);
  height: clamp(15rem, 25vw, 22rem);
}

.pottery-hover-gallery a {
  --p-n: calc(var(--i) / (var(--max-p) - 1));
  --diff: calc(var(--p-n) - var(--r-n));
  --u: calc(abs(var(--diff)) / var(--w));
  --w: 0.4;
  --falloff: clamp(calc(0.5 * (1 + cos(min(var(--u), 1) * 180deg))), 0, 1);
  --tilt: calc(clamp(-1, var(--diff) * 5, 1) * var(--falloff) * 70deg);
  --ts: calc(var(--hover-smoothness) * var(--falloff) + var(--fall-smoothness) * (1 - var(--falloff)));
  --fs: calc(0.1s * var(--falloff) + 0.8s * (1 - var(--falloff)));
  position: relative;
  display: flex;
  flex: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transform:
    translateZ(calc(var(--falloff) * var(--hover-intensity)))
    rotateY(calc(var(--tilt) * cos(var(--dir))))
    rotateX(calc(var(--tilt) * sin(var(--dir))));
  transform-style: preserve-3d;
  filter:
    brightness(max(0.48, var(--falloff) * 1.18))
    saturate(max(0.28, var(--falloff)));
  transition:
    filter var(--fs),
    flex 300ms ease,
    transform var(--ts);
}

.pottery-hover-gallery a:hover,
.pottery-hover-gallery a:focus-visible {
  flex: 4;
  outline: 0;
}

.pottery-hover-img {
  display: block;
  width: 100%;
  height: 100%;
  margin-inline: 0.08rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.pottery-hover-caption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(15, 20, 24, 0.64);
  color: #fffaf1;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(0.7rem, 1vw, 0.92rem);
  line-height: 1.35;
  opacity: 0;
  padding: 0.55rem 0.65rem;
  transform: translateY(0.35rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.pottery-hover-gallery a:hover .pottery-hover-caption,
.pottery-hover-gallery a:focus-visible .pottery-hover-caption {
  opacity: 1;
  transform: translateY(0);
}

.pottery-hover-gallery .hover-zone {
  position: absolute;
  inset: 0 -3px;
  z-index: 3;
  display: flex;
}

.pottery-hover-gallery .hover-zone i {
  flex: 1;
}

.pottery-hover-gallery:has(.hover-zone:hover):not(:has(i:hover)),
.pottery-hover-gallery:has(a:focus-visible) {
  --z: calc((var(--max-z) + 1) / 2);
}

.pottery-hover-gallery:has(a:nth-child(1):is(:hover, :focus-visible)) { --p: 1; }
.pottery-hover-gallery:has(a:nth-child(2):is(:hover, :focus-visible)) { --p: 2; }
.pottery-hover-gallery:has(a:nth-child(3):is(:hover, :focus-visible)) { --p: 3; }
.pottery-hover-gallery:has(a:nth-child(4):is(:hover, :focus-visible)) { --p: 4; }
.pottery-hover-gallery:has(a:nth-child(5):is(:hover, :focus-visible)) { --p: 5; }
.pottery-hover-gallery:has(a:nth-child(6):is(:hover, :focus-visible)) { --p: 6; }
.pottery-hover-gallery:has(a:nth-child(7):is(:hover, :focus-visible)) { --p: 7; }
.pottery-hover-gallery:has(a:nth-child(8):is(:hover, :focus-visible)) { --p: 8; }
.pottery-hover-gallery:has(a:nth-child(9):is(:hover, :focus-visible)) { --p: 9; }
.pottery-hover-gallery:has(a:nth-child(10):is(:hover, :focus-visible)) { --p: 10; }
.pottery-hover-gallery:has(a:nth-child(11):is(:hover, :focus-visible)) { --p: 11; }
.pottery-hover-gallery:has(a:nth-child(12):is(:hover, :focus-visible)) { --p: 12; }
.pottery-hover-gallery:has(a:nth-child(13):is(:hover, :focus-visible)) { --p: 13; }
.pottery-hover-gallery:has(a:nth-child(14):is(:hover, :focus-visible)) { --p: 14; }
.pottery-hover-gallery:has(a:nth-child(15):is(:hover, :focus-visible)) { --p: 15; }
.pottery-hover-gallery:has(a:nth-child(16):is(:hover, :focus-visible)) { --p: 16; }

.pottery-hover-gallery:has(i:nth-child(1):hover) { --z: 1; }
.pottery-hover-gallery:has(i:nth-child(2):hover) { --z: 2; }
.pottery-hover-gallery:has(i:nth-child(3):hover) { --z: 3; }
.pottery-hover-gallery:has(i:nth-child(4):hover) { --z: 4; }
.pottery-hover-gallery:has(i:nth-child(5):hover) { --z: 5; }
.pottery-hover-gallery:has(i:nth-child(6):hover) { --z: 6; }
.pottery-hover-gallery:has(i:nth-child(7):hover) { --z: 7; }
.pottery-hover-gallery:has(i:nth-child(8):hover) { --z: 8; }
.pottery-hover-gallery:has(i:nth-child(9):hover) { --z: 9; }

.pottery-circular-gallery {
  --gallery-card-width: clamp(10.5rem, 19vw, 17.5rem);
  --gallery-card-ratio: 0.78;
  --gallery-depth: calc(var(--gallery-card-width) * 2.14);
  display: grid;
  min-height: clamp(34rem, 58vw, 48rem);
  overflow: hidden;
  place-items: center;
  perspective: 82rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 253, 248, 0.13), transparent 13rem),
    radial-gradient(circle at 50% 57%, rgba(184, 79, 49, 0.26), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(39, 103, 157, 0.2), transparent 20rem),
    linear-gradient(180deg, #282522 0%, #1f1f1e 100%);
  box-shadow:
    inset 0 0 0 1px rgba(15, 41, 70, 0.08),
    0 28px 70px rgba(15, 41, 70, 0.18);
}

.pottery-circular-gallery-small {
  --gallery-card-width: clamp(12rem, 24vw, 20rem);
  --gallery-depth: calc(var(--gallery-card-width) * 1.18);
  min-height: clamp(31rem, 50vw, 40rem);
}

.pottery-orbit {
  position: relative;
  width: var(--gallery-card-width);
  aspect-ratio: var(--gallery-card-ratio);
  transform-style: preserve-3d;
  animation: pottery-orbit-spin 84s linear infinite;
}

.pottery-circular-gallery:hover .pottery-orbit {
  animation-play-state: paused;
}

.pottery-orbit figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.72rem;
  transform:
    rotateY(calc(var(--i) * 1turn / var(--n)))
    translateZ(var(--gallery-depth));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-color: rgba(255, 253, 248, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(239, 232, 220, 0.84));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 253, 248, 0.08);
  transition:
    box-shadow 320ms ease,
    filter 320ms ease,
    transform 320ms ease;
}

.pottery-orbit figure::before {
  position: absolute;
  inset: -0.55rem;
  border: 1px solid rgba(255, 253, 248, 0.13);
  content: "";
  pointer-events: none;
}

.pottery-orbit figure::after {
  position: absolute;
  inset: auto 0.9rem -1rem;
  height: 1.4rem;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.38), transparent 70%);
  content: "";
  filter: blur(3px);
  pointer-events: none;
  transform: translateZ(-1px);
}

.pottery-orbit img.pottery-image {
  max-height: calc(var(--gallery-card-width) / var(--gallery-card-ratio) - 1.5rem);
  margin: auto;
  filter: saturate(0.95) contrast(1.02);
}

.pottery-orbit figure:hover {
  filter: saturate(1.05);
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 253, 248, 0.18);
}

.pottery-orbit figcaption {
  align-self: end;
  width: 100%;
  margin-top: 0.65rem;
  border-top: 1px solid rgba(15, 41, 70, 0.16);
  padding-top: 0.55rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.78rem;
  line-height: 1.55;
}

@keyframes pottery-orbit-spin {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pottery-orbit {
    animation: none;
  }
}

.pottery-featured {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(24rem, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0 3.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pottery-featured figure {
  padding: 1rem;
}

.pottery-featured-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.pottery-featured-gallery img {
  width: 100%;
  height: 100%;
  min-height: clamp(16rem, 28vw, 24rem);
  object-fit: cover;
}

.pottery-featured h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.pottery-featured h3 {
  margin: 0.6rem 0 1.1rem;
  color: var(--terracotta);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.pottery-closing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 0 3rem;
}

.pottery-closing h2 {
  font-size: 1.6rem;
}

.adventures-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: 4.2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.adventures-hero h1 {
  margin: 0.7rem 0 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.adventures-hero p,
.adventure-closing p {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
}

.adventure-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 0 4rem;
}

.adventure-chapter {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.adventure-chapter:hover {
  border-color: rgba(184, 79, 49, 0.48);
  box-shadow: 0 20px 42px rgba(15, 41, 70, 0.09);
  transform: translateY(-4px);
}

.adventure-chapter img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.adventure-chapter span {
  display: block;
  margin: 1.2rem 1.2rem 0.35rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adventure-chapter h2 {
  margin: 0 1.2rem 1.25rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
}

.adventure-gallery-section {
  margin: 1rem 0 4.8rem;
  padding: 3rem 0 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(83, 107, 63, 0.28), transparent 18rem),
    radial-gradient(circle at 86% 82%, rgba(184, 79, 49, 0.24), transparent 20rem),
    linear-gradient(180deg, #272522 0%, #1f1f1f 100%);
}

.adventure-gallery-section .section-heading {
  align-items: end;
  margin-bottom: 1.2rem;
}

.adventure-gallery-section .eyebrow,
.adventure-gallery-section .text-link,
.adventure-gallery-section .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.adventure-gallery-section .heading-line {
  background: rgba(255, 253, 248, 0.64);
}

.adventure-gallery-section .section-heading p {
  max-width: 24rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: right;
}

.adventure-strip-gallery {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 1300px);
  height: 100vh;
  min-height: 42rem;
  max-height: 62rem;
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  background: #222;
}

.adventure-strip-wrapper {
  position: relative;
  flex: 0 0 25%;
  overflow: hidden;
  border-right: 2px solid #333;
  background: #222;
}

.adventure-strip-wrapper:last-child {
  border-right: 0;
}

.adventure-strip {
  min-height: 100%;
  padding: 2.4rem 0 5rem;
}

.adventure-strip-one,
.adventure-strip-three {
  animation: adventure-move-down 110s ease-in-out 5s infinite alternate;
  transform: translateY(2%);
}

.adventure-strip-two,
.adventure-strip-four {
  animation: adventure-move-up 118s ease-in-out 5.5s infinite alternate;
  transform: translateY(-42%);
}

.adventure-strip:hover {
  animation-play-state: paused;
}

.adventure-photo {
  position: relative;
  margin: 0 0 3rem;
  padding: 0;
  text-align: right;
}

.adventure-photo img {
  display: block;
  width: 90%;
  max-width: none;
  height: auto;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  filter: saturate(0.9) contrast(1.03);
  transform: translateX(30%);
  transition:
    filter 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.adventure-photo figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -1.55rem;
  padding-right: 0.8rem;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.2rem, 1.98vw, 2.07rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke-color: rgba(255, 253, 248, 0.9);
  -webkit-text-stroke-width: 1px;
  transition:
    color 300ms ease,
    text-shadow 300ms ease;
}

.adventure-photo:hover img {
  filter: saturate(1.03) contrast(1.06);
  transform: translateX(0);
}

.adventure-photo:hover figcaption {
  color: #fffdf8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.adventure-closing {
  display: grid;
  grid-template-columns: minmax(12rem, 0.6fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.adventure-closing h2 {
  margin: 0.55rem 0 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.watercolor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: 4rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.watercolor-hero h1 {
  max-width: 13ch;
  margin: 0.7rem 0 1.4rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.3rem, 6.2vw, 6.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.watercolor-hero p,
.watercolor-note p {
  max-width: 42rem;
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
}

.watercolor-hero-image {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
  padding: 0.8rem;
  box-shadow: 0 26px 64px rgba(15, 41, 70, 0.1);
}

.watercolor-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.watercolor-note {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 3.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.watercolor-note h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.16;
}

.watercolor-note div {
  display: grid;
  gap: 1rem;
}

.watercolor-selector-section {
  padding: 1rem 0 5rem;
}

.watercolor-selector-section .section-heading,
.watercolor-text-gallery-section .section-heading {
  align-items: end;
  margin-bottom: 1.2rem;
}

.watercolor-selector-section .section-heading p,
.watercolor-text-gallery-section .section-heading p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: right;
}

.watercolor-selector-gallery {
  position: relative;
  width: min(88rem, calc(100% - 6rem));
  min-height: clamp(34rem, 60vw, 50rem);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(83, 107, 63, 0.13), transparent 18rem),
    radial-gradient(circle at 88% 26%, rgba(39, 103, 157, 0.14), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(15, 41, 70, 0.028) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(184, 79, 49, 0.018) 0 1px, transparent 1px 9px),
    #fefefe;
  box-shadow: 0 28px 70px rgba(15, 41, 70, 0.1);
}

.watercolor-selector-gallery input {
  position: absolute;
  appearance: none;
}

.watercolor-selector-gallery > section {
  position: absolute;
  inset: 0 0 7.5rem;
  display: grid;
  place-items: center;
}

.watercolor-selector-gallery > section figure {
  position: absolute;
  inset: 0;
  display: none;
  margin: 0;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  mix-blend-mode: multiply;
  z-index: 2;
}

.watercolor-selector-gallery > section figure:first-child {
  display: block;
}

.watercolor-selector-gallery > section figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
}

.watercolor-selector-gallery aside {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(255, 253, 248, 0.88);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.watercolor-selector-gallery aside ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.watercolor-selector-gallery aside li {
  cursor: pointer;
  transform-origin: 0 100%;
  transition:
    filter 300ms ease,
    transform 300ms ease;
}

.watercolor-selector-gallery aside label {
  display: block;
  height: 7.5rem;
  border-right: 1px solid rgba(217, 212, 202, 0.78);
  cursor: pointer;
}

.watercolor-selector-gallery aside img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watercolor-selector-gallery aside:has(li:hover) li:not(:hover) {
  filter: grayscale(1) blur(0.04em);
  transform: translateY(18px);
}

.watercolor-selector-gallery:has(input:checked) > section figure {
  display: none;
}

.watercolor-selector-gallery:has(#study-city:checked) > section .study-city,
.watercolor-selector-gallery:has(#study-branches:checked) > section .study-branches,
.watercolor-selector-gallery:has(#study-animal:checked) > section .study-animal,
.watercolor-selector-gallery:has(#study-landscape:checked) > section .study-landscape,
.watercolor-selector-gallery:has(#study-bird:checked) > section .study-bird,
.watercolor-selector-gallery:has(#study-figure:checked) > section .study-figure,
.watercolor-selector-gallery:has(#study-garden:checked) > section .study-garden,
.watercolor-selector-gallery:has(#study-panorama:checked) > section .study-panorama {
  display: block;
}

.watercolor-selector-gallery aside input:checked + label {
  outline: 3px solid rgba(184, 79, 49, 0.62);
  outline-offset: -3px;
}

.watercolor-text-gallery-section {
  padding: 0 0 5rem;
}

.watercolor-expand-grid {
  position: relative;
  display: grid;
  width: min(88rem, calc(100% - 6rem));
  height: min(72vh, 48rem);
  min-height: 36rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #262421;
}

.watercolor-expand-grid + .watercolor-expand-grid {
  margin-top: 1.2rem;
}

.watercolor-expand-grid::before,
.watercolor-expand-grid::after {
  position: absolute;
  background: rgba(255, 253, 248, 0.5);
  content: "";
  z-index: 1;
}

.watercolor-expand-grid::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.watercolor-expand-grid::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.watercolor-expand-col {
  position: relative;
  grid-area: 1 / 1;
  cursor: pointer;
  transition: clip-path 500ms ease;
}

.watercolor-expand-col-1 {
  clip-path: inset(0 50% 50% 0);
}

.watercolor-expand-col-2 {
  clip-path: inset(0 0 50% 50%);
}

.watercolor-expand-col-3 {
  clip-path: inset(50% 50% 0 0);
}

.watercolor-expand-col-4 {
  clip-path: inset(50% 0 0 50%);
}

.watercolor-expand-col figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: 0;
  transition:
    height 500ms ease,
    left 500ms ease,
    top 500ms ease,
    width 500ms ease;
}

.watercolor-expand-col-2 figure {
  left: 50%;
}

.watercolor-expand-col-3 figure {
  top: 50%;
}

.watercolor-expand-col-4 figure {
  top: 50%;
  left: 50%;
}

.watercolor-expand-col img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f6f0;
}

.watercolor-expand-col figcaption {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  width: min(26rem, calc(100% - 2rem));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 253, 248, 0.5);
  background: rgba(15, 41, 70, 0.86);
  color: #fffdf8;
  padding: 0.8rem 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.watercolor-expand-col figcaption strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.watercolor-expand-col figcaption span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.watercolor-expand-col.is-expanded {
  clip-path: inset(0);
}

.watercolor-expand-col.is-expanded figure {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.watercolor-expand-col.show-caption figcaption {
  opacity: 1;
}

.watercolor-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 4.5rem;
}

.watercolor-links a {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.8rem;
}

.watercolor-links img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}

.watercolor-links strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.watercolor-links span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.source-watercolor {
  padding-top: 0.6rem;
}

.source-watercolor img {
  display: block;
  width: 100%;
}

.source-watercolor figure {
  margin: 0;
}

.source-watercolor figcaption {
  margin-top: 0.85rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
}

.source-watercolor h1,
.source-watercolor h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}

.source-watercolor h1 {
  font-size: clamp(3.8rem, 9vw, 7.4rem);
}

.source-watercolor h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.source-watercolor p {
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.78;
}

.source-watercolor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 2rem;
  align-items: center;
}

.source-watercolor-hero figure,
.source-watercolor-feature figure,
.source-watercolor-story figure,
.source-watercolor-pair figure,
.source-watercolor-callout figure,
.source-watercolor-window figure,
.source-watercolor-grid figure {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.55rem;
  box-shadow: 0 18px 45px rgba(15, 41, 70, 0.06);
}

.source-watercolor-hero img {
  max-height: 39rem;
  object-fit: cover;
}

.source-watercolor-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-watercolor-intro p {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}

.source-watercolor-section .section-heading p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.source-watercolor-section + .source-watercolor-section,
.source-watercolor-pair + .source-watercolor-section,
.source-watercolor-callout + .source-watercolor-section {
  margin-top: 1.4rem;
}

.source-watercolor-grid {
  display: grid;
  gap: 0.9rem;
}

.source-watercolor-grid.compact,
.source-watercolor-grid.four,
.source-watercolor-grid.masonry {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-watercolor-grid img {
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
}

.source-watercolor-grid.masonry figure:nth-child(5),
.source-watercolor-grid.masonry figure:nth-child(7) {
  grid-row: span 2;
}

.source-watercolor-feature {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

.source-watercolor-feature img {
  max-height: 32rem;
  object-fit: cover;
}

.source-watercolor-exhibition {
  display: grid;
  grid-template-columns: minmax(16rem, 0.36fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.source-watercolor-exhibition-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr) minmax(0, 0.8fr);
  gap: 0.9rem;
  align-items: stretch;
}

.source-watercolor-exhibition-grid figure {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.55rem;
  box-shadow: 0 18px 45px rgba(15, 41, 70, 0.06);
}

.source-watercolor-exhibition-grid img {
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.source-watercolor-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.75fr);
  gap: 1.5rem;
  align-items: center;
}

.source-watercolor-story > *:nth-child(3),
.source-watercolor-story > *:nth-child(4) {
  margin-top: 1rem;
}

.source-watercolor-story img {
  max-height: 36rem;
  object-fit: cover;
}

.source-watercolor-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.source-watercolor-pair.wide-left {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
}

.source-watercolor-pair img {
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.source-watercolor-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.28fr);
  gap: 1.4rem;
  align-items: center;
}

.source-watercolor-callout p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  text-align: center;
}

.source-watercolor-window {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  gap: 1.4rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-watercolor-window h2 {
  margin-bottom: 1rem;
}

.source-watercolor-video {
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
}

.source-watercolor-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(15, 41, 70, 0.1);
}

.source-watercolor-video p {
  margin: 1rem 0 0;
  text-align: center;
}

.literature-hero,
.theater-hero,
.digital-hero,
.digital-subhero,
.voluntary-hero,
.french-hero,
.certificates-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: 4rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.digital-projects {
  padding: 1.2rem 0 4rem;
}

.digital-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.digital-project-grid a {
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.digital-project-grid a:hover {
  border-color: rgba(184, 79, 49, 0.5);
  box-shadow: 0 18px 42px rgba(15, 41, 70, 0.08);
  transform: translateY(-3px);
}

.digital-project-grid img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.digital-project-grid span {
  display: block;
  margin: 1.2rem 1.2rem 0.4rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.digital-project-grid h2 {
  margin: 0 1.2rem 0.8rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.25;
}

.digital-project-grid p {
  margin: 0 1.2rem 1.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.interior-hero-copy h1 {
  max-width: 12ch;
  margin: 0.7rem 0 1.4rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.3rem, 6.2vw, 6.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.interior-hero-copy p,
.interior-intro p,
.interior-feature p,
.interior-card-grid p,
.interior-related h2 {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
}

.interior-hero-image {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.85rem;
  box-shadow: 0 26px 64px rgba(15, 41, 70, 0.1);
}

.interior-hero-image::before {
  position: absolute;
  inset: -1.1rem 1.5rem auto auto;
  width: 42%;
  height: 38%;
  border: 1px solid rgba(184, 79, 49, 0.28);
  content: "";
  pointer-events: none;
}

.interior-hero-image img {
  display: block;
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  background: var(--paper-soft);
}

.interior-intro {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 2.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.interior-intro h2,
.interior-feature h2,
.interior-related h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1.16;
}

.interior-intro div {
  display: grid;
  gap: 1rem;
}

.interior-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 0 3.4rem;
}

.interior-signal-grid article,
.interior-card-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  padding: 1.5rem;
}

.interior-signal-grid span,
.interior-card-grid span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.interior-signal-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
}

.interior-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 3.4rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(83, 107, 63, 0.12), transparent 18rem),
    rgba(255, 253, 248, 0.62);
  padding: 1rem;
}

.interior-feature figure {
  margin: 0;
  background: var(--paper-soft);
}

.interior-feature img {
  display: block;
  width: 100%;
  max-height: 31rem;
  object-fit: contain;
}

.interior-feature > div {
  padding: clamp(1rem, 3vw, 2.4rem);
}

.interior-feature h2 {
  margin: 0.75rem 0 1rem;
}

.language-institute {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 3.4rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(238, 232, 218, 0.48)),
    var(--ivory);
  padding: clamp(1.2rem, 3vw, 2.6rem);
}

.language-institute-logo {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(0.85rem, 2vw, 1.4rem);
}

.language-institute-logo img {
  display: block;
  width: 100%;
  max-height: 16rem;
  object-fit: contain;
}

.language-institute h2 {
  margin: 0.75rem 0 1rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1.16;
}

.language-institute p {
  max-width: 42rem;
  margin: 0 0 1.35rem;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
}

.french-achievements {
  margin-bottom: 3.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.french-achievements > div {
  width: min(72rem, calc(100% - 6rem));
  margin: 0 auto;
}

.french-achievements h2 {
  margin: 0.75rem 0 1.35rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1.16;
}

.french-achievements ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.french-achievements li {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
}

.french-achievements li:first-child {
  border-top: 0;
  padding-top: 0;
}

.french-achievements a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.about-cv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.56fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: 4.3rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.about-cv-copy h1 {
  max-width: 11ch;
  margin: 0.75rem 0 1.45rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.3rem, 6.2vw, 6.75rem);
  font-weight: 400;
  line-height: 1.03;
}

.about-cv-copy p,
.about-cv-intro p,
.about-cv-contact p,
.about-cv-print p {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
}

.about-cv-copy p {
  max-width: 43rem;
  margin-bottom: 2rem;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
}

.about-cv-portrait {
  margin: 0;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 12%, rgba(83, 107, 63, 0.14), transparent 14rem),
    rgba(255, 253, 248, 0.74);
  padding: 0.85rem;
  box-shadow: 0 26px 64px rgba(15, 41, 70, 0.1);
}

.about-cv-portrait img {
  display: block;
  width: 100%;
  max-height: 39rem;
  object-fit: cover;
  object-position: center 22%;
}

.about-cv-portrait figcaption {
  margin-top: 0.9rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
}

.about-cv-intro,
.about-cv-contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

.about-cv-intro h2,
.about-cv-contact h2,
.about-cv-print h2,
.about-cv-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.16;
}

.about-cv-intro h2,
.about-cv-contact h2,
.about-cv-print h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.about-cv-intro div {
  display: grid;
  gap: 1rem;
}

.about-cv-intro p:first-child {
  color: var(--navy);
  font-size: clamp(1.18rem, 1.65vw, 1.58rem);
  line-height: 1.58;
}

.about-cv-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 2.8rem 0 3.6rem;
}

.about-cv-signals article,
.about-cv-signals a,
.about-cv-skill-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 1.45rem;
}

.about-cv-signals a {
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.about-cv-signals a:hover {
  border-color: rgba(184, 79, 49, 0.5);
  transform: translateY(-2px);
}

.about-cv-signals span,
.about-cv-project-grid span,
.about-cv-skill-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-cv-signals strong,
.about-cv-skill-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.12rem, 1.7vw, 1.48rem);
  font-weight: 400;
  line-height: 1.25;
}

.about-cv-projects {
  padding-bottom: 4rem;
}

.about-cv-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-cv-project-grid article {
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
}

.about-cv-project-grid img {
  display: block;
  width: 100%;
  height: 17rem;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.about-cv-project-grid div {
  padding: 1.25rem;
}

.about-cv-project-grid h2,
.about-cv-timeline h3 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.22;
}

.about-cv-project-grid h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.about-cv-project-grid p,
.about-cv-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-cv-map {
  display: grid;
  grid-template-columns: minmax(13rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-bottom: 3rem;
}

.about-cv-index {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.about-cv-index a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--navy);
  padding: 0 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.about-cv-index a:hover {
  border-color: rgba(184, 79, 49, 0.5);
  transform: translateX(0.2rem);
}

.about-cv-section {
  scroll-margin-top: 2rem;
  margin-bottom: 4rem;
}

.about-cv-section h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
}

.about-cv-timeline {
  display: grid;
  gap: 0.85rem;
}

.about-cv-timeline article {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 1.25rem;
}

.about-cv-timeline time {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-cv-timeline h3 {
  font-size: 1.28rem;
}

.about-cv-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-cv-print {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 12%, rgba(83, 107, 63, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(239, 232, 220, 0.62));
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.about-cv-print button {
  min-height: 3rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fffaf1;
  padding: 0 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.about-cv-contact {
  margin-bottom: 3rem;
}

.about-cv-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.interior-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.6rem;
}

.interior-card-grid h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.interior-gallery-section {
  padding-bottom: 4rem;
}

.interior-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.interior-gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  padding: 0.65rem;
}

.interior-gallery-grid figure.wide {
  grid-column: span 2;
}

.interior-gallery-grid figure.tall {
  grid-row: span 2;
}

.interior-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: contain;
  background: var(--paper-soft);
}

.voluntary-activity-section {
  padding-top: 0;
}

.voluntary-activity-list {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.voluntary-activity-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.voluntary-activity-card:nth-child(even) {
  background: rgba(238, 234, 224, 0.46);
}

.voluntary-activity-card h2 {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.voluntary-activity-card p {
  max-width: 43rem;
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.82;
}

.voluntary-activity-card figure {
  margin: 0;
}

.voluntary-activity-card img {
  display: block;
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.48);
}

.interior-related {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: 4.5rem;
}

.interior-related h2 {
  margin-top: 0.7rem;
}

.interior-related-list {
  display: grid;
  gap: 0.8rem;
}

.interior-related-list a {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.8rem;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.interior-related-list a:hover {
  border-color: rgba(184, 79, 49, 0.5);
  transform: translateY(-2px);
}

.interior-related-list img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}

.interior-related-list strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.interior-related-list span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

@keyframes adventure-move-down {
  0%,
  90%,
  100% {
    transform: translateY(2%);
  }

  45% {
    transform: translateY(-46%);
  }
}

@keyframes adventure-move-up {
  0%,
  90%,
  100% {
    transform: translateY(-44%);
  }

  45% {
    transform: translateY(5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .adventure-strip-one,
  .adventure-strip-two,
  .adventure-strip-three,
  .adventure-strip-four {
    animation: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .pottery-hero,
  .pottery-featured,
  .pottery-closing,
  .adventures-hero,
  .adventure-closing,
  .watercolor-hero,
  .watercolor-note {
    grid-template-columns: 1fr;
  }

  .literature-hero,
  .theater-hero,
  .digital-hero,
  .digital-subhero,
  .voluntary-hero,
  .french-hero,
  .certificates-hero,
  .interior-intro,
  .voluntary-activity-card,
  .interior-feature,
  .language-institute,
  .interior-related,
  .about-cv-hero,
  .about-cv-intro,
  .about-cv-contact,
  .about-cv-map {
    grid-template-columns: 1fr;
  }

  .digital-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-watercolor-hero,
  .source-watercolor-intro,
  .source-watercolor-exhibition,
  .source-watercolor-story,
  .source-watercolor-callout,
  .source-watercolor-window {
    grid-template-columns: 1fr;
  }

  .source-watercolor-grid.compact,
  .source-watercolor-grid.four,
  .source-watercolor-grid.masonry,
  .source-watercolor-exhibition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-watercolor-pair,
  .source-watercolor-pair.wide-left {
    grid-template-columns: 1fr;
  }

  .source-watercolor-pair img {
    min-height: 20rem;
  }

  .about-cv-project-grid,
  .about-cv-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cv-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pottery-feature-cards {
    grid-template-columns: 1fr;
  }

  .pottery-hover-gallery {
    --dir: -90deg;
    width: min(100%, 30rem);
    height: min(38rem, 78vh);
    flex-direction: column;
  }

  .pottery-hover-img {
    margin: 0.08rem 0;
  }

  .adventure-chapters {
    grid-template-columns: repeat(2, 1fr);
  }

  .adventure-strip-gallery {
    width: min(100% - 2rem, 42rem);
    max-height: none;
    min-height: 0;
  }

  .adventure-strip-wrapper {
    flex-basis: 50%;
  }

  .adventure-strip {
    animation: none;
    transform: none;
  }

  .adventure-photo img {
    transform: translateX(12%);
  }

  .watercolor-selector-gallery,
  .watercolor-expand-grid {
    width: min(100% - 2rem, 42rem);
  }

  .watercolor-selector-gallery {
    min-height: 40rem;
  }

  .watercolor-selector-gallery aside ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .watercolor-selector-gallery > section {
    inset: 0 0 15rem;
  }

  .watercolor-selector-gallery aside label {
    height: 7.5rem;
  }

  .watercolor-selector-gallery aside:has(li:hover) li:not(:hover) {
    transform: translateY(0);
  }

  .watercolor-links {
    grid-template-columns: 1fr;
  }

  .interior-signal-grid,
  .interior-card-grid,
  .digital-project-grid,
  .about-cv-skill-grid {
    grid-template-columns: 1fr;
  }

  .interior-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-pad,
  .site-header,
  .footer-bottom {
    width: min(100% - 2rem, 42rem);
  }

  .site-header,
  .footer-bottom,
  .about-content,
  .feature-grid,
  .project-grid,
  .bottom-section {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy h1 {
    font-size: 2.95rem;
  }

  .hero-art {
    min-height: 18rem;
  }

  .hero-art img {
    height: 18rem;
  }

  .section-heading,
  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .adventures-hero h1 {
    font-size: 3.05rem;
  }

  .adventure-chapters {
    grid-template-columns: 1fr;
  }

  .adventure-gallery-section .section-heading p {
    text-align: left;
  }

  .adventure-strip-wrapper {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .adventure-photo img {
    width: 88%;
    transform: translateX(8%);
  }

  .adventure-photo figcaption {
    font-size: 1.05rem;
  }

  .watercolor-hero h1 {
    font-size: 3rem;
  }

  .interior-hero-copy h1 {
    font-size: 3rem;
  }

  .watercolor-selector-section .section-heading p,
  .watercolor-text-gallery-section .section-heading p {
    text-align: left;
  }

  .watercolor-selector-gallery {
    min-height: 34rem;
  }

  .watercolor-selector-gallery > section {
    inset: 0 0 11rem;
  }

  .watercolor-selector-gallery aside label {
    height: 5.5rem;
  }

  .watercolor-expand-grid {
    height: 34rem;
    min-height: 34rem;
  }

  .watercolor-expand-col figcaption {
    bottom: 0.85rem;
    padding: 0.65rem 0.75rem;
  }

  .interior-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-cv-project-grid,
  .about-cv-signals,
  .about-cv-index {
    grid-template-columns: 1fr;
  }

  .about-cv-timeline article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .about-cv-print {
    display: grid;
  }

  .interior-gallery-grid figure.wide,
  .interior-gallery-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .interior-related-list a {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card p {
    min-height: auto;
  }

  .about-panel,
  .news-panel,
  .gallery-panel {
    border-left: 0;
    padding-left: 0;
  }

  .footer-bottom p,
  .footer-bottom p:last-child {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.dh-copy-page .page-hero {
  min-height: clamp(32rem, 62vw, 42rem);
  display: grid;
  align-items: end;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  color: #fffaf1;
  isolation: isolate;
  margin-top: 0.5rem;
}

.dh-copy-page .hero-inner,
.dh-copy-page .section-inner,
.dh-copy-page .contact-inner {
  width: min(88rem, calc(100% - 6rem));
  margin: 0 auto;
}

.dh-copy-page .hero-inner {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.dh-copy-page .page-hero .eyebrow {
  color: rgba(255, 250, 241, 0.82);
}

.dh-copy-page .page-hero h1 {
  max-width: 13ch;
  margin: 0.75rem 0 1.35rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.2rem, 6.2vw, 6.75rem);
  font-weight: 400;
  line-height: 1.02;
}

.dh-copy-page .hero-copy {
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.dh-copy-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.dh-copy-page .button-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #fffaf1;
  background: #fffaf1;
  color: var(--navy);
  padding: 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dh-copy-page .page-hero .text-link {
  color: #fffaf1;
}

.dh-copy-page .section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.dh-copy-page .section.compact {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.dh-copy-page .split-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.dh-copy-page .split-intro h2,
.dh-copy-page .section-heading h2,
.dh-copy-page .feature-copy h2,
.dh-copy-page .info-card h3,
.dh-copy-page .project-link strong,
.dh-copy-page .contact-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.16;
}

.dh-copy-page .split-intro h2,
.dh-copy-page .section-heading h2,
.dh-copy-page .feature-copy h2,
.dh-copy-page .contact-band h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
}

.dh-copy-page .rich-text {
  display: grid;
  gap: 1rem;
}

.dh-copy-page .rich-text p,
.dh-copy-page .feature-copy p,
.dh-copy-page .info-card p,
.dh-copy-page .section-heading p,
.dh-copy-page .project-link span,
.dh-copy-page .contact-band p {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.82;
}

.dh-copy-page .stat-grid,
.dh-copy-page .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dh-copy-page .stat-item,
.dh-copy-page .info-card {
  min-height: 10rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 1.45rem;
}

.dh-copy-page .stat-item strong,
.dh-copy-page .info-card strong,
.dh-copy-page .tag-row span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dh-copy-page .stat-item span {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
  line-height: 1.25;
}

.dh-copy-page .feature-panel {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 10%, rgba(83, 107, 63, 0.12), transparent 18rem),
    rgba(255, 253, 248, 0.66);
  padding: 1rem;
}

.dh-copy-page .feature-image {
  background: var(--paper-soft);
}

.dh-copy-page .feature-image img {
  display: block;
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
}

.dh-copy-page .feature-copy {
  padding: clamp(1rem, 3vw, 2.5rem);
}

.dh-copy-page .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.dh-copy-page .tag-row span {
  margin: 0;
  border: 1px solid rgba(184, 79, 49, 0.28);
  padding: 0.45rem 0.65rem;
}

.dh-copy-page .feature-copy h2 {
  margin-bottom: 1rem;
}

.dh-copy-page .info-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.dh-copy-page .section-heading {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.25rem;
}

.dh-copy-page .section-heading p {
  max-width: 34rem;
  color: var(--muted);
  text-align: right;
}

.dh-copy-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dh-copy-page .gallery-card {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.76);
  padding: 0.65rem;
}

.dh-copy-page .gallery-card.wide {
  grid-column: span 2;
}

.dh-copy-page .gallery-card.tall {
  grid-row: span 2;
}

.dh-copy-page .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: contain;
  background: var(--paper-soft);
}

.dh-copy-page .gallery-card figcaption {
  margin-top: 0.65rem;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1.45;
}

.dh-copy-page .dh-video {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.9rem;
}

.dh-copy-page .dh-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.expanded-data-intro,
.data-viz-intro {
  padding: 4.2rem 0 2.8rem;
  border-top: 1px solid var(--line);
}

.expanded-data-intro h1,
.data-viz-intro h1 {
  max-width: 13ch;
  margin: 0.75rem 0 0.55rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.55rem);
  font-weight: 400;
  line-height: 1.04;
}

.expanded-data-date,
.data-viz-date {
  margin: 0 0 2.2rem;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expanded-data-date a,
.expanded-data-text a,
.data-viz-date a,
.data-viz-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.expanded-data-text,
.data-viz-text {
  display: grid;
  max-width: 73rem;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2.1rem;
}

.expanded-data-text p,
.data-viz-text p {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.88;
}

.expanded-data-text h2 {
  margin: 1.2rem 0 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1.16;
}

.expanded-data-image-section,
.data-viz-image-section {
  padding: 0 0 4.5rem;
}

.expanded-data-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: start;
}

.expanded-data-image-grid figure {
  margin: 0;
  min-height: clamp(19rem, 31vw, 28rem);
  border: 1px solid rgba(217, 212, 202, 0.65);
  border-radius: 1.05rem;
  background: rgba(255, 253, 248, 0.86);
  padding: 0.7rem;
  overflow: hidden;
}

.expanded-data-image-grid figure:nth-child(4) {
  grid-column: 1;
}

.expanded-data-image-grid img {
  display: block;
  width: 100%;
  height: clamp(18rem, 29vw, 26rem);
  object-fit: contain;
  object-position: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.42);
}

.data-viz-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: start;
}

.data-viz-card {
  margin: 0;
  min-height: clamp(21rem, 30vw, 28rem);
  overflow: hidden;
  border: 1px solid rgba(217, 212, 202, 0.65);
  border-radius: 0.9rem;
  background: rgba(255, 253, 248, 0.88);
}

.data-viz-card img {
  display: block;
  width: 100%;
  height: clamp(15rem, 23vw, 20rem);
  object-fit: cover;
  object-position: center;
}

.data-viz-card figcaption {
  min-height: 6.5rem;
  padding: 1.25rem 1.35rem;
  color: var(--charcoal, #28313d);
}

.data-viz-card strong {
  display: block;
  color: var(--charcoal, #28313d);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.data-viz-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1.35;
}

.data-viz-bottom-section {
  padding: 0 0 5rem;
}

.data-viz-bottom-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 212, 202, 0.65);
  border-radius: 1.35rem;
  background: rgba(255, 253, 248, 0.82);
  padding: 0.75rem;
}

.data-viz-bottom-image img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.mapping-hero {
  padding: 4.25rem 0 1.2rem;
  text-align: center;
}

.mapping-hero h1 {
  margin: 0.55rem auto 1.35rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.25rem);
  font-weight: 400;
  line-height: 1.02;
}

.mapping-hero p {
  margin: 0;
  color: var(--charcoal, #28313d);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.98rem;
}

.mapping-story-section {
  padding: 1.2rem 0 4.5rem;
}

.mapping-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 1.9rem);
}

.mapping-story-grid figure,
.mapping-chart-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 212, 202, 0.7);
  background: rgba(255, 253, 248, 0.84);
}

.mapping-story-grid figure {
  border-radius: 1.05rem;
}

.mapping-story-grid img {
  display: block;
  width: 100%;
  height: clamp(21rem, 34vw, 32rem);
  object-fit: cover;
  object-position: top center;
}

.mapping-story-grid figcaption {
  padding: 1rem 1.2rem;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
}

.mapping-method {
  padding: 4rem 0;
  background: rgba(238, 234, 224, 0.48);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mapping-section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.mapping-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

.mapping-chart-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.mapping-chart-grid figure {
  border-radius: 0.85rem;
  padding: 0.75rem;
}

.mapping-chart-grid img {
  display: block;
  width: 100%;
  height: clamp(19rem, 30vw, 28rem);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.6);
}

.mapping-chart-grid figcaption {
  margin-top: 0.65rem;
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mapping-wordcloud {
  padding: 0 0 4.5rem;
}

.dh-copy-page .project-list {
  display: grid;
  gap: 0.85rem;
}

.dh-copy-page .project-link {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 0.8rem;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.dh-copy-page .project-link:hover {
  border-color: rgba(184, 79, 49, 0.5);
  transform: translateY(-2px);
}

.dh-copy-page .project-link img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
}

.dh-copy-page .project-link strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
}

.dh-copy-page .project-link span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.dh-copy-page .project-link b {
  color: var(--terracotta);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.dh-copy-page .contact-band {
  margin: 0 0 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.46);
}

.dh-copy-page .contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.dh-copy-page .social-list {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.dh-copy-page .social-list a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.dh-copy-page .social-list a[aria-label="Facebook"]::before { content: "f"; }
.dh-copy-page .social-list a[aria-label="Bluesky"]::before { content: "b"; }
.dh-copy-page .social-list a[aria-label="Instagram"]::before { content: "ig"; }
.dh-copy-page .social-list a[aria-label="LinkedIn"]::before { content: "in"; }
.dh-copy-page .social-list a[aria-label="YouTube"]::before { content: "yt"; }

.dh-copy-page .social-list span {
  display: none;
}

@media (max-width: 980px) {
  .dh-copy-page .split-intro,
  .dh-copy-page .feature-panel,
  .dh-copy-page .contact-inner {
    grid-template-columns: 1fr;
  }

  .dh-copy-page .stat-grid,
  .dh-copy-page .card-grid,
  .dh-copy-page .gallery-grid,
  .expanded-data-image-grid,
  .data-viz-image-grid,
  .mapping-story-grid,
  .mapping-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dh-copy-page .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .dh-copy-page .section-heading p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .dh-copy-page .hero-inner,
  .dh-copy-page .section-inner,
  .dh-copy-page .contact-inner {
    width: min(100% - 2rem, 42rem);
  }

  .dh-copy-page .stat-grid,
  .dh-copy-page .card-grid,
  .dh-copy-page .gallery-grid,
  .expanded-data-image-grid,
  .data-viz-image-grid,
  .mapping-story-grid,
  .mapping-chart-grid {
    grid-template-columns: 1fr;
  }

  .expanded-data-image-grid figure:nth-child(4) {
    grid-column: auto;
  }

  .dh-copy-page .gallery-card.wide,
  .dh-copy-page .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .dh-copy-page .project-link {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .dh-copy-page .project-link b {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .about-cv-index,
  .about-cv-print,
  .about-cv-contact,
  .button-row,
  .social-links {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section-pad,
  .about-cv-hero,
  .about-cv-intro,
  .about-cv-map {
    width: 100%;
  }

  .about-cv-hero,
  .about-cv-intro,
  .about-cv-map {
    display: block;
    padding: 0;
    border: 0;
  }

  .about-cv-portrait,
  .about-cv-projects,
  .about-cv-signals {
    display: none;
  }

  .about-cv-copy h1 {
    font-size: 2.2rem;
  }

  .about-cv-section {
    margin-bottom: 1.5rem;
  }

  .about-cv-section h2 {
    font-size: 1.45rem;
  }

  .about-cv-timeline article,
  .about-cv-skill-grid article {
    break-inside: avoid;
    border-color: #ddd;
    background: #fff;
  }
}
