/* DW Art Studio page system */
.art-page {
  --art-paper: #f7f4ee;
  --art-ink: #1e1d1a;
  --art-muted: #756e65;
  --art-line: rgba(30, 29, 26, .16);
  background: var(--art-paper);
}

.art-page .site-header {
  background: rgba(247, 244, 238, .94);
}

.art-page .header-inner {
  grid-template-columns: auto 1fr auto;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 41px; height: 41px; display: block; flex: 0 0 41px; overflow: hidden; }
.brand-mark-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-footer .brand-mark { width: 50px; height: 50px; flex-basis: 50px; }
.site-header .brand-name { font-family: "Pompiere", var(--sans); font-size: 22px; font-weight: 400; letter-spacing: .08em; line-height: 1; }
.brand-stack { display: flex; flex-direction: column; line-height: 1; }
.brand-division { margin-top: 7px; color: rgba(30, 30, 27, .58); font-size: 8px; font-weight: 600; letter-spacing: .24em; }

.art-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.art-nav a {
  padding: 9px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
}

.art-nav a:hover,
.art-nav a[aria-current="page"] {
  opacity: .62;
}

.art-nav .back-to-staging {
  padding-left: 28px;
  border-left: 1px solid var(--art-line);
}

.art-hero-page {
  padding-top: var(--header-height);
}

.art-hero-inner {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-block: clamp(72px, 8vw, 118px);
}

.art-hero-copy {
  max-width: 650px;
}

.art-hero-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(60px, 6.2vw, 94px);
}

.art-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(30, 29, 26, .7);
  font-size: clamp(17px, 1.25vw, 20px);
}

.art-hero-copy .button-row {
  margin-top: 34px;
}

.art-hero-gallery {
  display: grid;
  grid-template-columns: 1.05fr .78fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: min(680px, 64vw);
}

.art-hero-gallery .art-panel {
  position: relative;
  overflow: hidden;
  background: #d8d0c4;
  box-shadow: 0 22px 55px rgba(35, 31, 27, .13);
}

.art-hero-gallery .art-panel:first-child {
  grid-row: 1 / 3;
}

.art-panel::before,
.art-panel::after,
.art-panel > span {
  content: "";
  position: absolute;
  display: block;
}

.art-panel-one { background: #d8d0c4; }
.art-panel-one::before {
  width: 90%;
  height: 58%;
  left: -23%;
  top: 14%;
  border-radius: 50%;
  background: #8c7b67;
  transform: rotate(-28deg);
}
.art-panel-one::after {
  width: 70%;
  height: 74%;
  right: -28%;
  bottom: -18%;
  border-radius: 55% 45% 40% 60%;
  background: #f1eadf;
  transform: rotate(20deg);
}
.art-panel-one > span {
  width: 32%;
  height: 62%;
  left: 37%;
  top: 23%;
  border: 2px solid #38312c;
  border-radius: 50%;
  transform: rotate(16deg);
}

.art-panel-two {
  background: linear-gradient(160deg, #dfe1df 0 48%, #77868b 49% 71%, #ddd4c5 72% 100%);
}
.art-panel-two::before {
  width: 130%;
  height: 18%;
  left: -18%;
  top: 33%;
  background: rgba(255, 255, 255, .72);
  transform: rotate(-12deg);
}
.art-panel-two::after {
  width: 115%;
  height: 2px;
  left: -5%;
  top: 61%;
  background: #2c302f;
  transform: rotate(9deg);
}

.art-panel-three { background: #c5ad91; }
.art-panel-three::before {
  width: 58%;
  height: 87%;
  left: 7%;
  bottom: -17%;
  border-radius: 52% 48% 42% 58%;
  background: #443a32;
  transform: rotate(-11deg);
}
.art-panel-three::after {
  width: 74%;
  height: 65%;
  right: -24%;
  top: -8%;
  border-radius: 50%;
  background: #eee4d5;
}
.art-panel-three > span {
  width: 20%;
  height: 57%;
  right: 27%;
  bottom: 8%;
  background: #a95f40;
  transform: rotate(10deg);
}

.art-path-section,
.art-category-section,
.art-content-section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.art-path-section {
  background: var(--soft-white);
}

.art-section-heading {
  max-width: 850px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.art-section-heading h2 {
  margin-bottom: 22px;
}

.art-section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(30, 29, 26, .68);
  font-size: 17px;
}

.art-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.art-path-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #ebe5dc;
  text-decoration: none;
  overflow: hidden;
}

.art-path-card:nth-child(2) { background: #dedfda; }
.art-path-card:nth-child(3) { background: #d9cab9; }

.art-path-visual {
  position: relative;
  flex: 1;
  min-height: 350px;
  overflow: hidden;
}

.art-path-visual::before,
.art-path-visual::after,
.art-path-visual > span {
  content: "";
  position: absolute;
  display: block;
}

.art-path-visual-standard::before {
  width: 60%;
  height: 78%;
  left: 18%;
  top: 11%;
  border: 12px solid #f6f0e8;
  background: linear-gradient(145deg, #a0876c 0 40%, #e8ded2 41% 64%, #403832 65% 100%);
  box-shadow: 0 18px 35px rgba(0,0,0,.13);
}

.art-path-visual-upload::before {
  width: 64%;
  height: 74%;
  left: 18%;
  top: 12%;
  background: linear-gradient(to top, #697e8a 0 34%, #c5d3d6 35% 68%, #e8e2d8 69% 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,.14);
}
.art-path-visual-upload::after {
  width: 32%;
  height: 38%;
  left: 34%;
  bottom: 15%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #495b62;
}
.art-path-visual-upload > span {
  width: 16%;
  aspect-ratio: 1;
  right: 24%;
  top: 23%;
  border-radius: 50%;
  background: #f0c88c;
}

.art-path-visual-custom::before {
  width: 73%;
  height: 74%;
  left: 13%;
  top: 13%;
  background: #eee6db;
  box-shadow: 0 20px 40px rgba(0,0,0,.14);
}
.art-path-visual-custom::after {
  width: 55%;
  height: 54%;
  left: 8%;
  top: 23%;
  border-radius: 50%;
  background: #865d4a;
  transform: rotate(-20deg);
}
.art-path-visual-custom > span {
  width: 45%;
  height: 70%;
  right: 2%;
  bottom: -4%;
  border-radius: 50%;
  background: #343231;
  transform: rotate(19deg);
}

.art-path-card-copy {
  min-height: 210px;
  padding: 30px;
}

.art-path-card-copy .eyebrow { margin-bottom: 12px; }
.art-path-card-copy h3 { margin-bottom: 15px; font-size: clamp(34px, 3vw, 45px); }
.art-path-card-copy p { color: rgba(30, 29, 26, .67); }
.art-path-card-copy .text-link { margin-top: 7px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}

.category-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.category-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ddd4c7;
  transition: transform .45s var(--ease);
}

.category-card:hover .category-visual { transform: translateY(-6px); }
.category-card h3 { margin-bottom: 6px; font-size: clamp(29px, 2.5vw, 38px); }
.category-card p { margin-bottom: 0; color: rgba(30,29,26,.62); font-size: 14px; }

.category-visual::before,
.category-visual::after,
.category-visual > span {
  content: "";
  position: absolute;
  display: block;
}

/* Twelve visual directions for the standard-art category cards. */
.cat-abstract { background: #cec4b7; }
.cat-abstract::before { width: 70%; height: 130%; left: -20%; top: -15%; border-radius: 50%; background: #6d6258; transform: rotate(22deg); }
.cat-abstract::after { width: 56%; height: 86%; right: -14%; bottom: -24%; border-radius: 50%; background: #eee6db; transform: rotate(-20deg); }
.cat-abstract > span { width: 30%; height: 70%; left: 44%; top: 15%; border: 2px solid #2d2b29; border-radius: 50%; transform: rotate(18deg); }

.cat-landscape { background: linear-gradient(to bottom, #cbd9dc 0 48%, #9caa93 49% 70%, #6c665a 71% 100%); }
.cat-landscape::before { width: 45%; height: 55%; left: 2%; bottom: 0; clip-path: polygon(0 100%, 52% 10%, 100% 100%); background: #596259; }
.cat-landscape::after { width: 56%; height: 64%; right: -4%; bottom: -2%; clip-path: polygon(0 100%, 52% 0, 100% 100%); background: #767768; }
.cat-landscape > span { width: 13%; aspect-ratio: 1; right: 15%; top: 16%; border-radius: 50%; background: #efe1bd; }

.cat-botanical { background: #d6d0bd; }
.cat-botanical::before { width: 4px; height: 88%; left: 49%; bottom: -6%; background: #4d5a45; transform: rotate(-8deg); }
.cat-botanical::after { width: 42%; height: 57%; left: 16%; top: 4%; border-radius: 100% 0 100% 0; background: #78836c; transform: rotate(12deg); }
.cat-botanical > span { width: 42%; height: 57%; right: 10%; bottom: 2%; border-radius: 0 100% 0 100%; background: #9b755a; transform: rotate(-10deg); }

.cat-coastal { background: linear-gradient(to bottom, #cfdfe3 0 42%, #8fb1bb 43% 66%, #e7d9bf 67% 100%); }
.cat-coastal::before { width: 120%; height: 5px; left: -10%; top: 58%; background: rgba(255,255,255,.75); transform: rotate(-4deg); }
.cat-coastal::after { width: 120%; height: 3px; left: -8%; top: 66%; background: rgba(255,255,255,.62); transform: rotate(3deg); }
.cat-coastal > span { width: 9%; height: 31%; right: 17%; bottom: 24%; background: #5e6260; clip-path: polygon(50% 0, 100% 100%, 0 100%); }

.cat-minimal { background: #e5e0d7; }
.cat-minimal::before { width: 36%; aspect-ratio: 1; left: 14%; top: 18%; border: 2px solid #292724; border-radius: 50%; }
.cat-minimal::after { width: 34%; height: 62%; right: 15%; bottom: 10%; background: #b09273; }
.cat-minimal > span { width: 68%; height: 2px; left: 16%; top: 62%; background: #292724; transform: rotate(-21deg); }

.cat-vintage { background: #c8b28e; }
.cat-vintage::before { width: 54%; height: 78%; left: 23%; top: 10%; border: 8px double #5f4d37; background: #e1d0a9; }
.cat-vintage::after { width: 28%; aspect-ratio: 1; left: 36%; top: 29%; border-radius: 50%; background: #8c5c44; }
.cat-vintage > span { width: 38%; height: 2px; left: 31%; bottom: 26%; background: #5f4d37; box-shadow: 0 8px 0 #5f4d37, 0 16px 0 #5f4d37; }

.cat-architecture { background: #cdc9c1; }
.cat-architecture::before { width: 24%; height: 70%; left: 12%; bottom: 0; background: #676765; box-shadow: 78px -35px 0 #8b8984, 156px 24px 0 #4f5252; }
.cat-architecture::after { width: 100%; height: 2px; left: 0; bottom: 22%; background: #2e3030; }
.cat-architecture > span { width: 17%; height: 24%; left: 16%; bottom: 28%; background: repeating-linear-gradient(to right, #d7d3ca 0 5px, #676765 5px 10px); }

.cat-still-life { background: #d7c8b3; }
.cat-still-life::before { width: 31%; height: 45%; left: 24%; bottom: 17%; border-radius: 46% 46% 20% 20%; background: #84654d; }
.cat-still-life::after { width: 18%; height: 56%; right: 25%; bottom: 17%; border-radius: 50% 50% 14% 14%; background: #efeadf; }
.cat-still-life > span { width: 72%; height: 4px; left: 14%; bottom: 16%; background: #51483f; }

.cat-figurative { background: #e6ddd1; }
.cat-figurative::before { width: 34%; height: 65%; left: 33%; top: 15%; border: 3px solid #393431; border-radius: 48% 48% 36% 40%; transform: rotate(-7deg); }
.cat-figurative::after { width: 1px; height: 57%; left: 53%; top: 22%; background: #393431; transform: rotate(18deg); }
.cat-figurative > span { width: 30%; height: 1px; left: 34%; top: 48%; background: #a36e54; transform: rotate(-28deg); }

.cat-kids { background: #d9d9c7; }
.cat-kids::before { width: 30%; aspect-ratio: 1; left: 18%; top: 22%; border-radius: 50%; background: #e6a76f; }
.cat-kids::after { width: 34%; aspect-ratio: 1; right: 17%; bottom: 18%; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: #7ea0a0; }
.cat-kids > span { width: 55%; height: 12%; left: 23%; top: 55%; border-radius: 50%; background: #8b6e9a; transform: rotate(-8deg); }

.cat-moody { background: #2f3131; }
.cat-moody::before { width: 60%; height: 86%; left: -15%; top: 7%; border-radius: 50%; background: #74473d; }
.cat-moody::after { width: 65%; height: 80%; right: -22%; bottom: -15%; border-radius: 50%; background: #141516; }
.cat-moody > span { width: 29%; height: 78%; left: 49%; top: 11%; background: #b38b5c; transform: rotate(13deg); }

.cat-seasonal { background: #c9c1ae; }
.cat-seasonal::before { width: 38%; height: 76%; left: 14%; bottom: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: #465c49; }
.cat-seasonal::after { width: 30%; height: 60%; right: 15%; bottom: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: #7a4d3f; }
.cat-seasonal > span { width: 16%; aspect-ratio: 1; right: 15%; top: 15%; border-radius: 50%; background: #e9d49b; }

.art-finish-section {
  background: #24211f;
  color: var(--soft-white);
}

.finish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.finish-card {
  min-height: 580px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
}

.finish-visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 44px;
  background: #d8d1c7;
}

.finish-art {
  width: min(72%, 390px);
  aspect-ratio: 4 / 5;
  position: relative;
  background: linear-gradient(145deg, #b5a18c 0 40%, #ece4d8 41% 70%, #4e453e 71% 100%);
  box-shadow: 0 24px 45px rgba(0,0,0,.2);
}

.finish-art.framed {
  border: 18px solid #2f2d2a;
  box-shadow: inset 0 0 0 6px #f0ebe3, 0 24px 45px rgba(0,0,0,.25);
}

.finish-copy { padding: 32px; }
.finish-copy h3 { margin-bottom: 12px; }
.finish-copy p { color: rgba(255,255,255,.66); }

.art-help-section {
  padding: clamp(88px, 10vw, 145px) 0;
  text-align: center;
  background: #e8e0d4;
}

.art-help-inner { max-width: 900px; }
.art-help-inner h2 { font-size: clamp(54px, 6vw, 84px); }
.art-help-inner p { max-width: 640px; margin: 0 auto 32px; color: rgba(30,29,26,.68); font-size: 18px; }

/* Standard collection and category pages */
.art-subhero {
  padding: calc(var(--header-height) + clamp(70px, 8vw, 120px)) 0 clamp(70px, 8vw, 115px);
  border-bottom: 1px solid var(--art-line);
}

.art-subhero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
}

.art-subhero h1 {
  margin-bottom: 0;
  font-size: clamp(62px, 7vw, 106px);
}

.art-subhero-copy {
  max-width: 590px;
  color: rgba(30,29,26,.68);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.breadcrumbs a { text-decoration: none; }
.breadcrumbs span { opacity: .5; }

.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--art-line);
}

.collection-toolbar p { margin: 0; color: rgba(30,29,26,.6); font-size: 13px; }
.collection-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.collection-chips span { padding: 7px 10px; border: 1px solid var(--art-line); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 22px;
}

.artwork-card { position: relative; }
.artwork-card-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd4c7;
}

.artwork-card:nth-child(2n) .artwork-card-visual { aspect-ratio: 1 / 1; }
.artwork-card:nth-child(3n) .artwork-card-visual { aspect-ratio: 5 / 4; }
.artwork-card-visual .category-visual { width: 100%; height: 100%; aspect-ratio: auto; margin: 0; }

.art-format-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  background: rgba(30,29,26,.78);
  color: white;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.artwork-card-copy { padding-top: 15px; }
.artwork-card-copy h3 { margin-bottom: 4px; font-size: 28px; }
.artwork-card-copy p { margin: 0; color: rgba(30,29,26,.58); font-size: 13px; }
.artwork-inquiry { display: inline-flex; margin-top: 12px; font-size: 11px; }

.related-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Upload and custom-art pages */
.art-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--art-line);
  border-bottom: 1px solid var(--art-line);
}

.art-process-step {
  min-height: 270px;
  padding: 30px 24px;
  border-right: 1px solid var(--art-line);
}
.art-process-step:last-child { border-right: 0; }
.art-process-step b { display: block; margin-bottom: 52px; font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--putty); }
.art-process-step h3 { margin-bottom: 12px; font-size: 30px; }
.art-process-step p { margin: 0; color: rgba(30,29,26,.62); font-size: 14px; }

.art-form-section { background: var(--soft-white); }
.art-form-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}

.art-form-intro { position: sticky; top: calc(var(--header-height) + 40px); }
.art-form-intro h2 { font-size: clamp(48px, 5vw, 72px); }
.art-form-intro > p:not(.eyebrow) { color: rgba(30,29,26,.66); }

.art-form {
  display: grid;
  gap: 22px;
}

.art-form label,
.art-form legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}

.art-form input,
.art-form select,
.art-form textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid var(--art-line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.art-form textarea { min-height: 130px; resize: vertical; }
.art-form fieldset { margin: 0; padding: 0; border: 0; }
.art-form .form-row { gap: 18px; }

.upload-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 30px;
  border: 1px dashed rgba(30,29,26,.35);
  background: #faf8f4;
  text-align: center;
  cursor: pointer;
}
.upload-box input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-box strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.upload-box small { display: block; color: rgba(30,29,26,.55); font-size: 12px; font-weight: 400; }
.upload-file-output { display: block; margin-top: 12px; color: rgba(30,29,26,.65); font-size: 11px; }

.art-form-note { margin: -4px 0 0; color: rgba(30,29,26,.5); font-size: 11px; }
.art-form-success { padding: 70px 40px; background: #eee7dc; text-align: center; }
.art-form-success h3 { font-size: 50px; }

.art-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.art-info-card { padding: 34px; border: 1px solid var(--art-line); background: rgba(255,255,255,.38); }
.art-info-card h3 { font-size: 34px; }
.art-info-card p { color: rgba(30,29,26,.64); }

.art-faq-list { border-top: 1px solid var(--art-line); }
.art-faq-list details { padding: 25px 0; border-bottom: 1px solid var(--art-line); }
.art-faq-list summary { cursor: pointer; font-family: var(--serif); font-size: 30px; list-style: none; }
.art-faq-list summary::-webkit-details-marker { display: none; }
.art-faq-list summary::after { content: "+"; float: right; font-family: var(--sans); font-size: 18px; }
.art-faq-list details[open] summary::after { content: "−"; }
.art-faq-list details p { max-width: 760px; margin: 18px 0 0; color: rgba(30,29,26,.66); }

.art-site-footer { background: #1d1c1a; }

@media (max-width: 1120px) {
  .art-page .header-cta { display: none; }
  .art-page .header-inner { grid-template-columns: auto 1fr; }
  .art-nav { justify-self: end; }
  .art-hero-inner { grid-template-columns: .9fr 1.1fr; gap: 45px; }
  .art-path-card { min-height: 500px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .art-process-grid { grid-template-columns: repeat(3, 1fr); }
  .art-process-step:nth-child(3) { border-right: 0; }
  .art-process-step:nth-child(-n+3) { border-bottom: 1px solid var(--art-line); }
}

@media (max-width: 900px) {
  .art-page .art-nav { display: none; }
  .art-page .header-inner { grid-template-columns: 1fr auto; }
  .art-hero-inner { min-height: auto; grid-template-columns: 1fr; padding-top: 90px; }
  .art-hero-copy { max-width: 780px; }
  .art-hero-gallery { min-height: 720px; }
  .art-path-grid { grid-template-columns: 1fr; }
  .art-path-card { min-height: 620px; }
  .art-subhero-grid { grid-template-columns: 1fr; gap: 28px; }
  .art-subhero-copy { max-width: 760px; }
  .finish-grid { grid-template-columns: 1fr; }
  .artwork-grid { grid-template-columns: 1fr 1fr; }
  .art-form-layout { grid-template-columns: 1fr; }
  .art-form-intro { position: static; max-width: 780px; }
  .art-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .art-hero-inner { padding-block: 74px 58px; }
  .art-hero-copy h1 { font-size: clamp(56px, 17vw, 76px); }
  .art-hero-gallery { min-height: 560px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .art-path-section,
  .art-category-section,
  .art-content-section { padding: 82px 0; }
  .art-path-card { min-height: 520px; }
  .art-path-card-copy { min-height: auto; padding: 26px 22px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-visual { aspect-ratio: 5 / 4; }
  .finish-card { min-height: 500px; }
  .finish-visual { min-height: 330px; padding: 28px; }
  .art-subhero { padding-top: calc(var(--header-height) + 64px); }
  .artwork-grid { grid-template-columns: 1fr; }
  .art-process-grid { grid-template-columns: 1fr; }
  .art-process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--art-line) !important; }
  .art-process-step:last-child { border-bottom: 0 !important; }
  .art-process-step b { margin-bottom: 24px; }
  .related-categories { grid-template-columns: 1fr; }
  .art-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-footer .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
  .site-header .brand-name { font-size: 18px; letter-spacing: .07em; }
}
