:root {
  --ink: #25231f;
  --soft-ink: #5f5a51;
  --muted: #817a6f;
  --paper: #fffdf8;
  --surface: #ffffff;
  --wash: #f4efe6;
  --line: #e5ddcf;
  --clay: #c94f3f;
  --plum: #51394e;
  --teal: #1f6e78;
  --gold: #d49a38;
  --cerulean: #2188b8;
  --shadow: 0 18px 50px rgba(43, 35, 29, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
}

.site-header {
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 52px);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 18px);
  color: var(--soft-ink);
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  color: var(--soft-ink);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: '⌄';
  margin-left: 4px;
  font-size: 11px;
}

.nav-group[open] summary {
  color: var(--clay);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  min-width: 190px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 12px;
  display: none;
  gap: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-group:hover > .nav-submenu,
.nav-group:focus-within > .nav-submenu,
.nav-group[open] > .nav-submenu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-submenu a {
  padding: 7px 8px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--clay);
  background: var(--wash);
}

.submenu-label {
  margin: 9px 8px 2px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.subnav-list {
  display: grid;
  gap: 4px;
}

.site-header nav a {
  color: var(--soft-ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--clay);
}

.hero {
  min-height: 0;
  padding: clamp(24px, 4vw, 54px) clamp(18px, 5vw, 74px) clamp(44px, 6vw, 76px);
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .88) 45%, rgba(244, 239, 230, .55)),
    linear-gradient(155deg, rgba(201, 79, 63, .16), transparent 42%),
    linear-gradient(25deg, rgba(31, 110, 120, .13), transparent 36%);
}

.hero-copy {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-main-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.hero-main-content .hero-copy {
  margin: 0;
  text-align: left;
}

.hero-main-content .hero-copy .eyebrow {
  text-align: left;
}

.hero-feature-image {
  margin: 0;
  align-self: center;
}

.hero-feature-image img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button,
.reset-button {
  min-height: 46px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-light,
.reset-button {
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
}

.hero-gallery {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-pair-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.hero-pair-card {
  min-height: clamp(210px, 18vw, 276px);
  padding: 12px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(229, 221, 207, .88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-pair-card:nth-child(1),
.hero-pair-card:nth-child(2),
.hero-pair-card:nth-child(3),
.hero-pair-card:nth-child(4),
.hero-pair-card:nth-child(5),
.hero-pair-card:nth-child(6) {
  grid-column: span 2;
}

.hero-pair-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 850;
}

.hero-pair-images {
  margin-top: 8px;
  min-height: 158px;
  position: relative;
  flex: 1;
  display: block;
}

.hero-art-frame,
.hero-item-frame {
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--wash);
  border: 7px solid #fff;
  box-shadow: 0 12px 28px rgba(43, 35, 29, .12);
}

.hero-art-frame {
  width: 66%;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 3%;
  bottom: 2%;
  z-index: 1;
  transform: rotate(-2deg);
}

.hero-item-frame {
  width: 53%;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 3%;
  bottom: 9%;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-pair-card:nth-child(even) .hero-item-frame {
  transform: rotate(-3deg);
}

.hero-pair-card:nth-child(even) .hero-art-frame {
  transform: rotate(2deg);
}

.hero-pair-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hero-item-frame img {
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.hero-art-frame:hover img,
.hero-item-frame:hover img,
.product-image-link:hover img {
  transform: scale(1.035);
}

.hero-pair-card small {
  position: absolute;
  left: 7px;
  bottom: 7px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(37, 35, 31, .76);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band {
  margin-top: clamp(54px, 8vw, 108px);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 8vw, 130px);
  display: grid;
  grid-template-columns: 220px minmax(0, 920px);
  gap: 34px;
  background: var(--ink);
  color: #fffaf0;
}

.intro-band .eyebrow {
  color: #f1b875;
}

.intro-band p:last-child {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3.1vw, 38px);
  line-height: 1.12;
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 74px) 0;
}

.section-top {
  padding-top: clamp(28px, 5vw, 58px);
  padding-bottom: clamp(30px, 5vw, 58px);
}

.section:last-of-type {
  padding-bottom: clamp(62px, 8vw, 116px);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  line-height: .98;
}

.product-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.collection-grid,
.product-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.collection-card {
  min-height: 326px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  transition: transform .35s ease;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card div {
  width: 100%;
  margin-top: auto;
  padding: 11px 14px 12px;
  background: rgba(255, 253, 248, .88);
  border-top: 1px solid rgba(229, 221, 207, .72);
  backdrop-filter: blur(8px);
}

.collection-card span {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
}

.collection-card small {
  display: block;
  margin-top: 8px;
  opacity: .78;
  font-weight: 700;
}

.series-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.series-card {
  min-height: 326px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.series-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  background: #fff;
  transition: transform .35s ease;
}

.series-card div {
  width: 100%;
  margin-top: auto;
  padding: 11px 14px 12px;
  background: rgba(255, 253, 248, .88);
  border-top: 1px solid rgba(229, 221, 207, .72);
  backdrop-filter: blur(8px);
}

.series-card span {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
}

.series-card:hover img {
  transform: scale(1.06);
}

.series-card.is-active,
.reset-button:hover {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(201, 79, 63, .12);
}

.active-filter {
  max-width: 1180px;
  margin: -8px auto 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-grid {
  gap: 34px;
}

.artwork-product-group {
  display: grid;
  gap: 16px;
}

.artwork-product-group[hidden] {
  display: none;
}

.artwork-product-heading {
  padding-bottom: 10px;
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.artwork-product-heading h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
  line-height: 1.15;
}

.artwork-product-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.artwork-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-section-rows {
  display: grid;
  gap: 26px;
}

.product-carousel-row {
  position: relative;
  min-width: 0;
}

.product-row-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-carousel-controls {
  position: absolute;
  top: -52px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.carousel-control {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  color: #fff;
  background: var(--ink);
}

.artwork-product-grid.product-carousel {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-carousel .product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card[hidden] {
  display: none;
}

.product-image-link {
  display: block;
  background: var(--wash);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 47, 36, .22);
  box-shadow: 0 16px 36px rgba(56, 47, 36, .13);
}

.product-body {
  padding: 17px;
}

.product-type {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}

.product-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-footer {
  margin-top: 17px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 20px;
  font-weight: 900;
}

.buy-link {
  padding: 9px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  transition: background-color .2s ease, color .2s ease;
}

.buy-link:hover {
  color: var(--ink);
  background: var(--gold);
}

.view-more-button {
  width: fit-content;
  min-height: 42px;
  margin: 4px auto 0;
  padding: 10px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.view-more-button[hidden] {
  display: none;
}

.newsletter-band {
  margin-top: clamp(62px, 8vw, 116px);
  padding: clamp(36px, 6vw, 72px) clamp(18px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  color: #fffaf0;
  background: var(--ink);
}

.newsletter-band .eyebrow {
  color: #f1b875;
}

.newsletter-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.newsletter-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form .checkbox-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .checkbox-field input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--cerulean);
}

.contact-form textarea {
  resize: vertical;
}

.newsletter-form button,
.contact-form button {
  min-height: 46px;
  padding: 12px 18px;
  color: #fff;
  background: var(--clay);
  border: 1px solid var(--clay);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.contact-form button {
  background: var(--clay);
  border-color: var(--clay);
}

.contact-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 74px) clamp(84px, 10vw, 132px);
}

.contact-section .section-heading {
  max-width: none;
  margin: 0;
}

.contact-section .section-heading h2 {
  max-width: 1240px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: .94;
}

.contact-form {
  max-width: 824px;
  margin: 26px 0 0 18%;
}

.site-footer {
  padding: clamp(34px, 6vw, 68px) clamp(18px, 5vw, 74px);
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) repeat(3, minmax(140px, 1fr));
  align-items: start;
  gap: clamp(24px, 4vw, 52px);
  color: #fffaf0;
  background: var(--ink);
}

.footer-brand,
.footer-link-column,
.footer-link-column nav {
  display: grid;
  gap: 11px;
}

.footer-brand .brand {
  color: #fffaf0;
}

.footer-brand span {
  color: rgba(255, 250, 240, .72);
  font-size: 13px;
}

.creator-credit {
  width: fit-content;
  color: #f1b875;
  font-size: 13px;
}

.footer-link-column h2 {
  margin: 0 0 5px;
  color: #fffaf0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer a {
  color: #f1b875;
  font-family: inherit;
  font-weight: 750;
}

#footer-collection-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: clamp(18px, 2.5vw, 34px);
}

.footer-collection-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

@media (max-width: 1040px) {
  .hero-pair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .series-list,
  .artwork-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artwork-product-grid.product-carousel {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 18px) / 2);
  }

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

  .newsletter-band,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    max-height: none;
    margin-top: 8px;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-group[open] > .nav-submenu {
    display: grid;
  }

  .hero {
    min-height: 0;
  }

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

  #footer-collection-links {
    grid-template-columns: 1fr;
  }

  .hero-feature-image {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .hero-pair-card,
  .hero-pair-card:nth-child(1),
  .hero-pair-card:nth-child(2),
  .hero-pair-card:nth-child(3),
  .hero-pair-card:nth-child(4),
  .hero-pair-card:nth-child(5),
  .hero-pair-card:nth-child(6) {
    grid-column: auto;
    min-height: 230px;
    margin-top: 0;
  }

  .hero-pair-images {
    min-height: 174px;
  }

  .hero-art-frame,
  .hero-item-frame {
    border-width: 5px;
  }

  .hero-item-frame {
    width: 50%;
  }

  .hero-pair-card:nth-child(even) .hero-item-frame {
    transform: rotate(-3deg);
  }

  .hero-pair-card:nth-child(even) .hero-art-frame {
    transform: rotate(2deg);
  }

  .collection-grid,
  .series-list,
  .artwork-product-grid {
    grid-template-columns: 1fr;
  }

  .artwork-product-grid.product-carousel {
    grid-template-columns: none;
    grid-auto-columns: calc(100% - 6px);
  }

  .product-carousel-controls {
    top: -48px;
  }

  .newsletter-band,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-left: 0;
  }

  .product-heading,
  .artwork-product-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
