:root {
  --wall: #eee4d6;
  --wall-light: #fbf6ee;
  --paper: #f8f1e7;
  --text: #1f252b;
  --muted: #66717d;
  --accent: #1f3f63;
  --black: #11161c;
  --white: #ffffff;
  --line: rgba(31, 37, 43, 0.14);
  --shadow-soft: 0 18px 42px rgba(31, 37, 43, 0.12);
  --shadow-heavy: 0 34px 90px rgba(31, 37, 43, 0.25);
  --max: 1240px;
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--serif);
  background:
    linear-gradient(rgba(251, 246, 238, 0.55), rgba(238, 228, 214, 0.62)),
    url("thumbnails/gallery-page-bg.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 249, 241, 0.08);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.35rem;
  font-family: var(--sans);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 1rem;
  z-index: -1;
  background: rgba(250, 245, 237, 0.62);
  border: 1px solid rgba(31, 37, 43, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(31, 37, 43, 0.06);
}

.hero-header {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(100%, 1440px);
  transform: translateX(-50%);
}

.hero-header::before {
  background: rgba(250, 245, 237, 0.18);
  border-color: rgba(31, 37, 43, 0.04);
  box-shadow: none;
}

.monogram {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(31, 37, 43, 0.42);
  color: var(--text);
  background: rgba(255, 249, 241, 0.48);
  font-family: var(--serif);
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(31, 37, 43, 0.08);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
}

.main-nav a,
.github-link {
  position: relative;
  color: var(--text);
  text-decoration: none;
  opacity: 0.76;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.github-link:hover {
  color: var(--accent);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.github-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
}

.github-link::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 .5C5.65.5.5 5.65.5 12a11.5 11.5 0 0 0 7.86 10.92c.58.1.79-.25.79-.56v-2.15c-3.2.69-3.88-1.35-3.88-1.35-.53-1.34-1.28-1.7-1.28-1.7-1.05-.72.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.03 1.76 2.7 1.25 3.36.95.1-.75.4-1.25.73-1.53-2.56-.29-5.24-1.28-5.24-5.71 0-1.26.45-2.29 1.18-3.1-.12-.29-.51-1.47.11-3.05 0 0 .97-.31 3.17 1.18a10.98 10.98 0 0 1 5.77 0c2.2-1.49 3.17-1.18 3.17-1.18.62 1.58.23 2.76.11 3.05.73.81 1.18 1.84 1.18 3.1 0 4.44-2.69 5.41-5.26 5.7.42.36.79 1.05.79 2.13v3.16c0 .31.21.67.8.56A11.5 11.5 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-scene {
  position: relative;
  min-height: 100vh;
  background: var(--wall);
  overflow: hidden;
}

.hero-image-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--wall);
}

.hero-gallery-image {
  width: 100vw;
  max-width: none;
  height: auto;
  display: block;
}

.hero-title-card {
  position: absolute;
  left: 50%;
  top: 10.8%;
  z-index: 12;
  width: min(92vw, 900px);
  transform: translateX(-50%);
  text-align: center;
}

.hero-title-card p {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title-card h1 {
  color: #1e242a;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.65vw, 4.95rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.52);
}

.hero-click {
  position: absolute;
  z-index: 20;
  display: block;
  border: none;
  border-radius: 0.4rem;
  outline: none;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.hero-click:hover,
.hero-click:focus,
.hero-click:focus-visible,
.hero-click:active {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

.hero-click-css {
  left: 7.2%;
  top: 29.2%;
  width: 25.4%;
  height: 47.4%;
}

.hero-click-sp2 {
  left: 36.5%;
  top: 29.2%;
  width: 27.2%;
  height: 47.4%;
}

.hero-click-js {
  left: 67.4%;
  top: 29.2%;
  width: 25.8%;
  height: 47.4%;
}

.hero-frame-label {
  position: absolute;
  z-index: 19;
  width: 8.7rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  color: rgba(36, 25, 18, 0.72);
  background: rgba(238, 224, 190, 0.5);
  border: 1px solid rgba(70, 49, 25, 0.12);
  box-shadow: 0 5px 12px rgba(31, 37, 43, 0.05);
  font-family: var(--sans);
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.hero-frame-label span {
  display: inline-block;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

.hero-frame-label strong {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-label-css {
  left: 22.55%;
  top: 76.65%;
  transform: translateX(-50%);
}

.hero-label-sp2 {
  left: 50%;
  top: 76.65%;
  transform: translateX(-50%);
}

.hero-label-js {
  left: 77.7%;
  top: 76.65%;
  transform: translateX(-50%);
}

.hero-scroll-pill {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.86rem 1.15rem;
  border-radius: 999px;
  color: #1f252b;
  background: rgba(255, 249, 241, 0.72);
  border: 1px solid rgba(31, 37, 43, 0.12);
  box-shadow: 0 20px 44px rgba(31, 37, 43, 0.16);
  backdrop-filter: blur(14px);
  font-family: var(--sans);
  font-size: 0.95rem;
  text-decoration: none;
}

.hero-scroll-circle {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: var(--white);
  background: #11161c;
}

.hero-scroll-arrow {
  color: rgba(31, 37, 43, 0.68);
  font-size: 1.1rem;
}

.hero-quote-card {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 21;
  width: 17.5rem;
  padding: 1.15rem 1.25rem 1rem;
  border-radius: 1.15rem;
  color: var(--white);
  background: rgba(17, 22, 28, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(31, 37, 43, 0.24);
  backdrop-filter: blur(18px);
}

.hero-quote-card p {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-quote-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: 0.86rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-intro-panel,
.article-hero {
  max-width: 980px;
  margin: 5rem auto 0;
  padding: 2.4rem 1.4rem;
  text-align: center;
  background: rgba(255, 249, 241, 0.56);
  border: 1px solid rgba(31, 37, 43, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(9px);
}

.home-intro-panel h1,
.article-hero h1 {
  max-width: 840px;
  margin: 0 auto 1rem;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-intro-panel p,
.article-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.78;
}

.home-intro-actions,
.article-actions,
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.museum-button,
.article-actions a,
.article-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(31, 37, 43, 0.28);
  color: var(--text);
  background: rgba(255, 249, 241, 0.45);
  font-family: var(--sans);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.museum-button:hover,
.article-actions a:hover,
.article-actions button:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.home-showcase-grid,
.skills-grid,
.small-gallery-grid,
.article-grid {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 1.4rem;
  display: grid;
  gap: 1.2rem;
}

.home-showcase-grid,
.skills-grid,
.small-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.home-showcase-grid article,
.skill-card,
.small-piece,
.article-panel,
.process-list article,
.about-highlight {
  background: rgba(255, 249, 241, 0.6);
  border: 1px solid rgba(31, 37, 43, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(9px);
}

.home-showcase-grid article,
.skill-card,
.article-panel,
.process-list article {
  padding: 1.35rem;
}

.home-showcase-grid span,
.process-list span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-showcase-grid h2,
.skill-card h3,
.small-piece h3,
.article-panel h2,
.process-list h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  font-weight: 400;
}

.home-showcase-grid p,
.skill-card p,
.small-piece p,
.article-panel p,
.process-list p {
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.68;
}

.home-showcase-grid a,
.mini-links a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
}

.home-showcase-grid a:hover,
.mini-links a:hover {
  text-decoration: underline;
}

.home-skills-preview,
.process-section,
.about-highlight {
  max-width: var(--max);
  margin: 5rem auto 0;
  padding: 2.3rem 1.4rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 249, 241, 0.54);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(9px);
}

.home-skills-preview h2,
.process-section h2,
.about-highlight h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-skills-preview p,
.about-highlight p:last-child,
.section-heading p {
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.78;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
  padding: 0 1.4rem;
  text-align: center;
}

.extended-gallery,
.skills-section {
  max-width: var(--max);
  margin: 5rem auto 0;
}

.gallery-wall {
  position: relative;
  max-width: 1320px;
  margin: 4rem auto 0;
  padding: 0 1.4rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.gallery-wall .section-heading {
  grid-column: 1 / -1;
}

.gallery-piece {
  text-align: center;
}

.frame-link {
  display: block;
  text-decoration: none;
}

.frame {
  position: relative;
  padding: 1.05rem;
  background: linear-gradient(135deg, #d0b98e, #6d543b 30%, #241912 55%, #9b8564);
  border: 1px solid rgba(47, 36, 25, 0.58);
  box-shadow: var(--shadow-heavy);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 90px rgba(31, 37, 43, 0.28);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.artwork,
.article-artwork,
.small-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #11161c;
  border: 14px solid #efe8db;
  box-shadow: inset 0 0 0 1px rgba(31, 37, 43, 0.12);
}

.artwork {
  min-height: 238px;
}

.article-artwork {
  min-height: 410px;
}

.artwork-image {
  position: relative;
  padding: 0;
}

.artwork-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.artwork-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 45%);
}

.artwork-label,
.small-frame span {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  transform: translateX(-50%);
  padding: 0.75rem 0.95rem;
  color: var(--white);
  background: rgba(17, 22, 28, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plaque {
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  z-index: 3;
  min-width: 4.2rem;
  transform: translateX(-50%);
  padding: 0.42rem 0.7rem;
  color: #241912;
  background: linear-gradient(180deg, #dbc797, #a58b61);
  border: 1px solid rgba(70, 49, 25, 0.45);
  box-shadow: 0 8px 18px rgba(31, 37, 43, 0.14);
  font-size: 0.82rem;
}

.piece-info {
  padding: 2.1rem 0.8rem 0;
}

.piece-kicker {
  display: none;
}

.piece-info h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.piece-info p {
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.6;
}

.view-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid rgba(31, 63, 99, 0.75);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
}

.view-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.small-piece {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.small-frame {
  position: relative;
  min-height: 7.5rem;
  border-width: 0.55rem;
  box-shadow:
    0 0 0 0.35rem #745d42,
    0 14px 30px rgba(31, 37, 43, 0.14);
}

.small-frame span {
  position: static;
  transform: none;
  font-size: 0.72rem;
}

.artwork-css,
.artwork-holidaze {
  background: linear-gradient(135deg, #27485f, #d9e4ea);
}

.artwork-js,
.artwork-js2 {
  background: linear-gradient(135deg, #111827, #312e81);
}

.artwork-sp2 {
  background: linear-gradient(135deg, #edf3ff, #ffffff);
}

.artwork-agency {
  background: linear-gradient(135deg, #f59e0b, #fff7ed);
}

.artwork-gutwell {
  background: linear-gradient(135deg, #103e28, #ff7f32);
}

.artwork-workflow {
  background: linear-gradient(135deg, #111827, #e5e7eb);
}

.artwork-rootrise {
  background: linear-gradient(135deg, #46614f, #f4efe6);
}

.project-article {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 0 1.4rem 4rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.92rem;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.divider {
  width: 12rem;
  height: 1px;
  margin: 1.8rem auto;
  background: linear-gradient(90deg, transparent, rgba(31, 37, 43, 0.52), transparent);
}

.divider::after {
  content: "✦";
  display: block;
  width: 2rem;
  margin: -0.78rem auto 0;
  color: rgba(31, 37, 43, 0.48);
  background: var(--wall-light);
  font-size: 0.9rem;
}

.article-frame {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.05rem;
  background: linear-gradient(135deg, #d0b98e, #6d543b 30%, #241912 55%, #9b8564);
  border: 1px solid rgba(47, 36, 25, 0.58);
  box-shadow: var(--shadow-heavy);
}

.article-frame figcaption {
  padding: 1rem 0.5rem 0;
  color: #f8f0e5;
  font-family: var(--sans);
  font-size: 0.88rem;
  text-align: center;
}

.article-panel {
  min-height: 13rem;
}

.skills-hero {
  margin-top: 4rem;
}

.skill-card {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 3.4rem;
  height: 0.26rem;
  background: var(--accent);
}

.process-section {
  align-items: start;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.contact-card {
  max-width: 820px;
  margin: 5rem auto 2rem;
  padding: 2.2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 12%, rgba(72, 111, 159, 0.42), transparent 14rem),
    rgba(17, 22, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  backdrop-filter: blur(14px);
}

.contact-card blockquote {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.35;
}

.contact-links a {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-family: var(--sans);
  text-decoration: none;
}

.contact-links a:hover {
  background: var(--white);
  color: var(--text);
}

.copy-success {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(17, 22, 28, 0.92);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 2rem 1rem 3rem;
  color: rgba(102, 113, 125, 0.72);
  font-family: var(--sans);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-scene {
    min-height: auto;
  }

  .hero-header {
    position: relative;
    left: auto;
    width: auto;
    transform: none;
  }

  .hero-image-stage {
    min-height: auto;
  }

  .hero-gallery-image {
    width: 150%;
    max-width: none;
    transform: translateX(-17%);
  }

  .hero-title-card,
  .hero-frame-label,
  .hero-quote-card {
    display: none;
  }

  .hero-click {
    display: block;
    position: absolute;
    z-index: 40;
  }

  .hero-click-css {
    left: 0;
    top: 24%;
    width: 34%;
    height: 43%;
  }

  .hero-click-sp2 {
    left: 34%;
    top: 24%;
    width: 33%;
    height: 43%;
  }

  .hero-click-js {
    left: 67%;
    top: 24%;
    width: 33%;
    height: 43%;
  }

  .hero-scroll-pill {
    left: 1rem;
    bottom: 1rem;
    transform: scale(0.82);
    transform-origin: left bottom;
  }

  .home-showcase-grid,
  .skills-grid,
  .small-gallery-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .home-skills-preview,
  .process-section,
  .about-highlight {
    grid-template-columns: 1fr;
  }

  .gallery-wall {
    grid-template-columns: 1fr;
    max-width: 660px;
  }
}

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

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-scroll-pill {
    padding: 0.7rem 0.9rem;
    gap: 0.65rem;
  }

  .hero-scroll-circle {
    width: 2.4rem;
    height: 2.4rem;
  }

  .home-intro-panel,
  .article-hero {
    margin-top: 3rem;
  }

  .home-intro-panel h1,
  .article-hero h1,
  .home-skills-preview h2,
  .process-section h2,
  .about-highlight h2,
  .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .small-piece {
    grid-template-columns: 1fr;
  }

  .small-frame {
    min-height: 10rem;
  }

  .article-frame {
    padding: 0.75rem;
  }

  .article-artwork {
    min-height: 215px;
    border-width: 11px;
  }

  .contact-card {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (min-width: 2200px) {
  .hero-scene {
    position: relative;
    min-height: 100vh;
    background:
      linear-gradient(rgba(238, 228, 214, 0.3), rgba(238, 228, 214, 0.3)),
      url("thumbnails/gallery-hero-final.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(238, 228, 214, 0.34);
    backdrop-filter: blur(18px);
  }

  .hero-image-stage {
    position: relative;
    z-index: 1;
    width: min(100vw, 2050px);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 28px 90px rgba(31, 37, 43, 0.16);
  }

  .hero-gallery-image {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: unset;
    object-position: unset;
  }

  .hero-title-card h1 {
    font-size: clamp(4rem, 4vw, 5.6rem);
  }

  .home-intro-panel,
  .home-showcase-grid,
  .home-skills-preview,
  .gallery-wall,
  .extended-gallery,
  .skills-section,
  .process-section,
  .about-highlight,
  .project-article {
    max-width: 1240px;
  }
}

@media (min-width: 3000px) {
  .hero-image-stage {
    width: min(100vw, 2150px);
  }

  .hero-title-card {
    top: 9.8%;
  }

  .hero-frame-label {
    transform: translateX(-50%) scale(0.94);
  }
}
