:root {
  color-scheme: light;
  --paper: #dfe3dc;
  --paper-deep: #c9cdc3;
  --canvas: #f3f1e8;
  --ink: #171813;
  --muted: #62655c;
  --red: #b73529;
  --red-dark: #711f1c;
  --moss: #4d623e;
  --acid: #d1bc45;
  --steel: #586d75;
  --line: rgba(23, 24, 19, 0.28);
  --line-light: rgba(243, 241, 232, 0.24);
  --shadow: 0 22px 52px rgba(23, 24, 19, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  font: 700 0.82rem/1 var(--mono);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(243, 241, 232, 0.14);
  background: var(--ink);
  color: var(--canvas);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 18px;
  text-decoration: none;
}

.brand span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  padding-left: 18px;
  border-left: 2px solid var(--red);
  color: var(--acid);
  font: 700 0.74rem/1.2 var(--mono);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 38px);
}

.nav-links a {
  position: relative;
  color: var(--canvas);
  font: 700 0.78rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--canvas);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(76px, 9vh, 120px) clamp(20px, 5vw, 76px) 72px;
  border-bottom: 10px solid var(--ink);
  background: var(--paper);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: var(--red);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(58%, 820px);
  padding-top: 28px;
}

.hero-kicker,
.overline,
.hero-index {
  margin: 0;
  font: 700 0.76rem/1.4 var(--mono);
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red-dark);
}

.hero-kicker::before {
  width: 48px;
  height: 5px;
  background: var(--acid);
  content: "";
}

.hero h1 {
  max-width: 12ch;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1::after {
  display: inline-block;
  width: 0.17em;
  height: 0.17em;
  margin-left: 0.04em;
  background: var(--red);
  content: "";
  vertical-align: baseline;
}

.hero-deck {
  max-width: 34rem;
  margin: 26px 0 0;
  color: #393c35;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  min-width: 172px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 700 0.83rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ink);
  color: var(--canvas);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--acid);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  margin: 0;
  background: transparent;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-card-main {
  top: 3%;
  right: 20%;
  width: min(38vw, 600px);
  height: 94%;
  opacity: 0.94;
}

.hero-card-small.top {
  top: 5%;
  right: -1%;
  width: min(23vw, 350px);
  height: 47%;
  z-index: 2;
}

.hero-card-small.bottom {
  right: 0;
  bottom: 2%;
  width: min(31vw, 500px);
  height: 36%;
  z-index: 3;
}

.hero-card figcaption {
  position: absolute;
  right: 10%;
  bottom: 4%;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--acid);
  font: 700 0.7rem/1 var(--mono);
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 22px;
  z-index: 6;
  color: var(--red-dark);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: var(--canvas);
}

.category-strip a {
  position: relative;
  min-height: 168px;
  padding: 30px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line-light);
  text-decoration: none;
}

.category-strip a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--red);
  content: "";
}

.category-strip a:nth-child(2)::before {
  background: var(--acid);
}

.category-strip a:nth-child(3)::before {
  background: var(--moss);
}

.category-strip a:nth-child(4)::before {
  background: var(--steel);
}

.category-strip a:last-child {
  border-right: 0;
}

.category-strip strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.category-strip span {
  display: block;
  max-width: 25ch;
  color: #b9bbb3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-strip a:hover,
.category-strip a:focus-visible {
  background: #24251f;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  padding: 108px clamp(20px, 5vw, 76px) 54px;
  background: var(--canvas);
}

.section-heading {
  max-width: 900px;
}

.overline {
  margin-bottom: 18px;
  color: var(--red-dark);
}

.section-intro h2,
.studio-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.section-intro h2 {
  max-width: 13ch;
  font-size: 4.5rem;
  line-height: 1.04;
}

.section-summary {
  max-width: 50ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 4px;
}

.filter {
  min-width: 72px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 700 0.76rem/1 var(--mono);
  text-transform: uppercase;
}

.filter:hover,
.filter:focus-visible,
.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--canvas);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 78px 22px;
  align-items: start;
  padding: 24px clamp(20px, 5vw, 76px) 128px;
  background: var(--canvas);
}

.art-item {
  grid-column: span 3;
  min-width: 0;
}

.art-item.wide {
  grid-column: span 6;
}

.art-item.section-marker {
  grid-column: span 4;
}

.art-item:nth-child(7n + 2),
.art-item:nth-child(7n + 5) {
  margin-top: 48px;
}

.art-item[hidden] {
  display: none;
}

.art-button {
  display: grid;
  width: 100%;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.art-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(23, 24, 19, 0.42);
  background: #f8f7f1;
  object-fit: contain;
  padding: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.art-item.tall .art-button img {
  aspect-ratio: 2 / 3;
}

.art-item.wide .art-button img {
  aspect-ratio: 3 / 2;
}

.art-item.section-marker .art-button img {
  aspect-ratio: 4 / 5;
}

.art-button span {
  display: block;
  min-height: 52px;
  padding-left: 12px;
  border-left: 4px solid var(--paper-deep);
  color: var(--muted);
  font: 0.75rem/1.45 var(--mono);
}

.art-button strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.2;
}

.art-button:hover img,
.art-button:focus-visible img {
  border-color: var(--red);
  box-shadow: 9px 9px 0 var(--paper-deep);
  transform: translate(-4px, -4px);
}

.art-button:hover span,
.art-button:focus-visible span {
  border-left-color: var(--red);
}

.studio-note {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
  background: var(--moss);
  color: var(--canvas);
}

.studio-art {
  position: relative;
  min-height: 640px;
  padding: clamp(32px, 5vw, 76px);
  background: var(--paper);
}

.studio-art img {
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.studio-art span {
  position: absolute;
  bottom: 26px;
  left: clamp(32px, 5vw, 76px);
  color: var(--red-dark);
  font: 700 0.72rem/1 var(--mono);
  text-transform: uppercase;
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(28px, 5vw, 76px);
}

.studio-copy .overline {
  color: #fff1a0;
}

.studio-copy h2 {
  max-width: 12ch;
  font-size: 3.8rem;
  line-height: 1.05;
}

.studio-copy > p:not(.overline) {
  max-width: 42ch;
  margin: 28px 0 0;
  color: #daddd2;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--acid);
  color: var(--canvas);
  font: 700 0.8rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--acid);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: clamp(48px, 8vw, 130px);
  padding: 110px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: var(--canvas);
}

.contact-copy {
  display: grid;
  gap: 0;
}

.contact .overline {
  color: var(--acid);
}

.contact h2 {
  max-width: 10ch;
  font-size: 5rem;
  line-height: 1.02;
}

.contact-intro {
  max-width: 42ch;
  margin: 26px 0 0;
  color: #b9bbb3;
}

.contact-panel {
  display: grid;
  max-width: 760px;
  margin-top: 52px;
  border-top: 1px solid var(--line-light);
}

.contact-panel a {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  color: #b9bbb3;
  font: 700 0.72rem/1.3 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--canvas);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  overflow-wrap: anywhere;
}

.contact-panel a:hover strong,
.contact-panel a:focus-visible strong {
  color: var(--acid);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: #20211c;
}

.form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.form-head strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.form-head span,
.inquiry-form label span,
.form-status {
  color: #aeb0a8;
  font: 0.74rem/1.5 var(--mono);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 241, 232, 0.3);
  border-radius: 0;
  outline: 0;
  background: #171813;
  color: var(--canvas);
  font: 1rem/1.45 var(--sans);
}

.inquiry-form input {
  min-height: 46px;
  padding: 10px 12px;
}

.inquiry-form textarea {
  min-height: 136px;
  resize: vertical;
  padding: 12px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 2px rgba(209, 188, 69, 0.22);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--canvas);
  color: var(--ink);
}

.form-submit[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
}

.form-status.is-error {
  color: #ff9388;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 76px);
  background: var(--red-dark);
  color: var(--canvas);
  font: 700 0.74rem/1.4 var(--mono);
  text-transform: uppercase;
}

.site-footer > span {
  font-family: var(--serif);
  font-size: 1.25rem;
  text-transform: none;
}

.site-footer div {
  display: flex;
  gap: 28px;
}

.site-footer a {
  text-underline-offset: 5px;
}

.lightbox {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 18px;
  border: 1px solid var(--canvas);
  background: var(--ink);
  color: var(--canvas);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox::backdrop {
  background: rgba(10, 11, 9, 0.88);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: var(--canvas);
}

.lightbox p {
  margin: 14px 110px 0 0;
  font: 0.78rem/1.45 var(--mono);
}

.lightbox-close {
  position: absolute;
  right: 18px;
  bottom: 16px;
  min-width: 76px;
  min-height: 38px;
  border: 1px solid var(--acid);
  border-radius: 0;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font: 700 0.74rem/1 var(--mono);
  text-transform: uppercase;
}

@media (max-width: 1440px) {
  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-card-main {
    right: 18%;
  }

  .section-intro h2 {
    font-size: 3.9rem;
  }

  .studio-copy h2 {
    font-size: 3.25rem;
  }

  .contact h2 {
    font-size: 4.3rem;
  }
}

@media (max-width: 1180px) {
  .hero-copy {
    width: 62%;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-card-main {
    right: 14%;
    width: 42vw;
  }

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

  .category-strip a:nth-child(2) {
    border-right: 0;
  }

  .category-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  .art-item {
    grid-column: span 4;
  }

  .art-item.wide {
    grid-column: span 8;
  }

  .contact {
    gap: 54px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px clamp(20px, 4vw, 40px) 20px;
    border-bottom: 1px solid var(--line-light);
    background: var(--ink);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(243, 241, 232, 0.12);
  }

  .hero {
    min-height: 780px;
    padding-top: 70px;
  }

  .hero-copy {
    width: 68%;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero-card-main {
    right: 8%;
    width: 48vw;
  }

  .hero-card-small.top {
    right: -5%;
    width: 29vw;
  }

  .hero-card-small.bottom {
    right: -4%;
    width: 38vw;
  }

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

  .art-item,
  .art-item.section-marker {
    grid-column: span 3;
  }

  .art-item.wide {
    grid-column: span 6;
  }

  .studio-note,
  .contact {
    grid-template-columns: 1fr;
  }

  .studio-art {
    min-height: 500px;
  }

  .studio-copy {
    min-height: 520px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .inquiry-form {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .brand {
    display: grid;
    gap: 4px;
  }

  .brand span {
    font-size: 1.55rem;
  }

  .brand small {
    padding-left: 0;
    border-left: 0;
    font-size: 0.65rem;
  }

  .hero {
    min-height: auto;
    padding: 54px 20px 36px;
  }

  .hero::before {
    width: 7px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 13ch;
    margin-top: 20px;
    font-size: 2.8rem;
    line-height: 1.14;
  }

  .hero h1::after {
    display: none;
  }

  .hero-deck {
    max-width: 28rem;
    font-size: 1.05rem;
  }

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

  .button {
    min-width: 0;
  }

  .hero-art {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
    pointer-events: auto;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    opacity: 1;
  }

  .hero-card-main {
    grid-column: 1 / -1;
    aspect-ratio: 712 / 1024;
    max-height: 560px;
  }

  .hero-card-small {
    aspect-ratio: 1;
  }

  .hero-card-small.top,
  .hero-card-small.bottom {
    inset: auto;
    width: auto;
    height: auto;
  }

  .hero-card img {
    object-fit: contain;
  }

  .hero-card figcaption {
    right: 8px;
    bottom: 8px;
  }

  .hero-index {
    position: static;
    margin-top: 18px;
    text-align: right;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .category-strip a {
    min-height: 136px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section-intro {
    gap: 32px;
    padding-top: 76px;
  }

  .section-intro h2 {
    font-size: 3rem;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .filter {
    min-width: 0;
    padding-inline: 6px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 14px;
    padding-bottom: 86px;
  }

  .art-item,
  .art-item.section-marker {
    grid-column: span 1;
  }

  .art-item.wide {
    grid-column: span 2;
  }

  .art-item:nth-child(7n + 2),
  .art-item:nth-child(7n + 5) {
    margin-top: 0;
  }

  .art-button img,
  .art-item.tall .art-button img,
  .art-item.section-marker .art-button img {
    aspect-ratio: 4 / 5;
    padding: 8px;
  }

  .art-button span {
    min-height: 0;
    font-size: 0.68rem;
  }

  .art-button strong {
    font-size: 0.95rem;
  }

  .studio-art {
    min-height: 420px;
    padding: 32px 20px;
  }

  .studio-art span {
    left: 20px;
  }

  .studio-copy {
    min-height: 0;
    padding: 70px 20px;
  }

  .studio-copy h2 {
    font-size: 2.8rem;
  }

  .contact {
    gap: 52px;
    padding: 80px 20px;
  }

  .contact h2 {
    font-size: 3.2rem;
  }

  .contact-panel a {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .contact-panel strong {
    font-size: 1.18rem;
  }

  .inquiry-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }

}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.35rem;
  }

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

  .section-intro h2,
  .studio-copy h2,
  .contact h2 {
    font-size: 2.5rem;
  }

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

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

  .art-item,
  .art-item.wide,
  .art-item.section-marker {
    grid-column: span 1;
  }

  .art-item.wide .art-button img {
    aspect-ratio: 3 / 2;
  }

  .contact-panel a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
