.artistern-home-page {
  --home-bg: #fff;
  --home-surface: #fafafa;
  --home-ink: #191714;
  --home-border: #e6e6e6;
  --home-text: #1d1d1d;
  --home-muted: #777;
  --home-gold: #c8a45c;
  overflow: hidden;
  background: var(--home-bg);
  color: var(--home-text);
  font-size: 14px;
  line-height: 1.5;
}

.artistern-home-page-shell {
  width: min(1440px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.artistern-home-page h1,
.artistern-home-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.artistern-home-page h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.15;
}

.artistern-home-button {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-border);
  background: #fff;
  color: var(--home-text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.35;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.artistern-home-button-dark {
  border-color: var(--home-text);
  background: var(--home-text);
  color: #fff;
}

.artistern-home-button-dark:hover,
.artistern-home-button-dark:focus {
  border-color: #000;
  background: #000;
  color: #fff;
}

.artistern-home-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--home-text);
}

.artistern-home-button-light:hover,
.artistern-home-button-light:focus {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-text);
}

.artistern-home-button-outline-light {
  border-color: rgba(255,255,255,.6);
  background: transparent;
  color: #fff;
}

.artistern-home-button-outline-light:hover,
.artistern-home-button-outline-light:focus {
  border-color: #fff;
  color: #fff;
}

.artistern-home-slides {
  position: relative;
  height: 76vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  background: var(--home-ink);
}

.artistern-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.artistern-home-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.artistern-home-slide > img,
.artistern-home-slide-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.artistern-home-slide > img {
  object-fit: cover;
}

.artistern-home-slide-shade {
  background: linear-gradient(180deg, rgba(15,13,10,.25) 0%, rgba(15,13,10,.62) 100%);
}

.artistern-home-slide.has-no-image .artistern-home-slide-shade {
  background: linear-gradient(145deg, #342f29, var(--home-ink));
}

.artistern-home-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding-bottom: 96px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
}

.artistern-home-slide-inner h1 {
  max-width: 17ch;
  margin: 0 0 12px;
  color: #fff;
  font-size: 60px;
  line-height: 1.06;
  text-wrap: balance;
}

.artistern-home-slide-eyebrow {
  margin: 0 0 10px !important;
  color: var(--home-gold) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.artistern-home-slide-inner p {
  max-width: 46ch;
  margin: 0 0 26px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.artistern-home-slide-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding-bottom: 30px;
  align-items: center;
  color: #fff;
}

.artistern-home-slide-dots {
  display: flex;
  gap: 14px;
}

.artistern-home-slide-dot {
  position: relative;
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}

.artistern-home-slide-dot span {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--home-gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.artistern-home-slide-dot.is-active span {
  animation: artisternHomeSlideProgress var(--home-slide-duration, 5500ms) linear forwards;
}

.artistern-home-slides.is-paused .artistern-home-slide-dot.is-active span {
  animation-play-state: paused;
}

@keyframes artisternHomeSlideProgress {
  to { transform: scaleX(1); }
}
.artistern-home-slide-count { margin-left: auto; color: rgba(255,255,255,.85); font: 14px Georgia, serif; letter-spacing: .1em; }
.artistern-home-slide-count b { color: var(--home-gold); font-weight: 400; }

.artistern-home-section { padding-top: 92px; }
.artistern-home-eyebrow { margin: 0 0 10px; color: var(--home-gold); font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.artistern-home-section-head {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: baseline;
  justify-content: space-between;
}

.artistern-home-see-all {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.artistern-home-see-all svg { transition: transform .2s ease; }
.artistern-home-see-all:hover svg,
.artistern-home-see-all:focus svg { transform: translateX(4px); }

.artistern-home-intro {
  max-width: 760px;
  text-align: center;
}

.artistern-home-intro::before {
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 auto 30px;
  background: var(--home-gold);
  content: "";
}

.artistern-home-intro h2 { margin-bottom: 18px; font-size: 40px; text-wrap: balance; }
.artistern-home-intro p { margin: 0 0 26px; color: #3a3a3a; font: 17px/1.75 Georgia, serif; }

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

.artistern-home-badge { padding: 22px 20px 18px; border: 1px solid var(--home-border); }
.artistern-home-badge > span { display: block; width: 26px; height: 2px; margin-bottom: 14px; background: var(--home-gold); }
.artistern-home-badge h3 { margin: 0 0 6px; font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.artistern-home-badge p { margin: 0; color: var(--home-muted); font-size: 12.5px; }

.artistern-home-browse {
  margin-top: 92px;
  padding: 64px 0 68px;
  background: var(--home-surface);
}

.artistern-home-browse-intro { margin-bottom: 30px; text-align: center; }
.artistern-home-browse-intro h2 { margin-bottom: 8px; }
.artistern-home-browse-intro p { margin: 0; color: var(--home-muted); }

.artistern-home-search {
  display: flex;
  max-width: 620px;
  gap: 10px;
  margin: 0 auto 22px;
}

.artistern-home-search input[type="search"] {
  min-width: 0;
  min-height: 49px;
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--home-border);
  background: #fff;
  color: var(--home-text);
  font-size: 14.5px;
}

.artistern-home-search input[type="search"]:focus { border-color: var(--home-gold); outline: 0; }
.artistern-home-category-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.artistern-home-category-links a { padding: 9px 16px; border: 1px solid var(--home-border); background: #fff; color: var(--home-muted); font-size: 12.5px; font-weight: 600; transition: border-color .15s ease, color .15s ease; }
.artistern-home-category-links a:hover,
.artistern-home-category-links a:focus { border-color: var(--home-gold); color: var(--home-text); }

.artistern-home-page ul.products.artistern-home-picks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.artistern-home-product-media {
  position: relative;
  display: block;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: linear-gradient(150deg, #e9e4da, #d9d2c4);
}

.artistern-home-product-media > .artistern-card-artwork-link {
  z-index: 1;
  width: 100%;
  height: auto;
}

.artistern-home-product-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,.12), transparent 45%, rgba(0,0,0,.12));
  content: "";
  pointer-events: none;
}

.artistern-home-product-media img { display: block; width: 100% !important; height: auto !important; margin: 0 !important; object-fit: initial !important; transform: scale(1); transform-origin: var(--artistern-card-origin-x, 50%) var(--artistern-card-origin-y, 50%); transition: transform .62s cubic-bezier(.2,.72,.2,1); }
.artistern-home-product-media.is-artwork-hovering img { transform: scale(2); }
.artistern-home-product-copy h3 { margin: 13px 0 0; font: 400 17px/1.35 Georgia, serif; }
.artistern-home-product-artist { margin-top: 2px; color: var(--home-muted); font-size: 12.5px; }
.artistern-home-product-artist a { color: inherit; }
.artistern-home-product-spec { margin: 4px 0 0; color: var(--home-muted); font-size: 12px; }
.artistern-home-product-price { margin-top: 6px; font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.artistern-home-product-price .price { color: inherit !important; font: inherit !important; }
.artistern-home-product-price.is-sold { color: var(--home-gold); }
.artistern-home-product-note { margin: 12px 0 0; padding-left: 12px; border-left: 2px solid var(--home-gold); color: #5a5a5a; font: italic 13.5px/1.6 Georgia, serif; }

.artistern-home-strip-wrap { padding-bottom: 10px; overflow-x: auto; scrollbar-width: thin; }
.artistern-home-page ul.products.artistern-home-strip { display: flex !important; width: max-content; gap: 22px; }
.artistern-home-page ul.products.artistern-home-strip > li { width: 240px !important; flex: 0 0 240px; }
.artistern-product-card--home-strip .artistern-home-product-media { height: auto; }
.artistern-product-card--home-strip .artistern-home-product-copy h3 { margin-top: 11px; font-size: 15px; }
.artistern-product-card--home-strip .artistern-home-product-artist { font-size: 12px; }
.artistern-product-card--home-strip .artistern-home-product-price { margin-top: 5px; font-size: 13.5px; }

.artistern-home-product-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  background: rgba(255,255,255,.92);
  color: var(--home-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.artistern-home-product-badge.is-sold { background: var(--home-ink); color: #fff; }

.artistern-home-product-media .artistern-card-wishlist {
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
}

.artistern-home-product-media .artistern-card-wishlist .artistern-icon {
  width: 16px;
  height: 16px;
}

.artistern-product-card:is(:hover, :focus-within) .artistern-home-product-media .artistern-card-wishlist,
.artistern-home-product-media .artistern-card-wishlist.is-active,
.artistern-home-product-media .artistern-card-wishlist:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (hover: none) {
  .artistern-home-product-media .artistern-card-wishlist {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

.artistern-home-spotlight {
  margin-top: 92px;
  background: var(--home-spotlight-bg, var(--home-ink));
  color: var(--home-spotlight-text, #ece7dd);
}

.artistern-home-spotlight-inner {
  display: flex;
  min-height: 572px;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 76px;
  align-items: center;
}

.artistern-home-spotlight-inner.has-no-image { min-height: 480px; }
.artistern-home-spotlight-photo { width: 34%; height: 420px; flex: 0 0 34%; outline: 1px solid rgba(200,164,92,.4); outline-offset: 8px; overflow: hidden; }
.artistern-home-spotlight-photo img { width: 100%; height: 100%; object-fit: cover; }
.artistern-home-spotlight-copy { flex: 1; }
.artistern-home-spotlight-copy h2 { margin: 0 0 6px; color: inherit; font-size: 38px; }
.artistern-home-spotlight-meta { margin: 0 0 22px; color: inherit; font-size: 13px; opacity: .64; }
.artistern-home-spotlight-copy blockquote { max-width: 54ch; margin: 0 0 26px; color: inherit; font: italic 18px/1.7 Georgia, serif; }
.artistern-home-spotlight-copy blockquote::before { margin-right: 4px; color: var(--home-gold); content: "“"; font-size: 30px; line-height: 0; }

.artistern-home-arrival-categories { display: flex; gap: 8px; margin: 0 0 28px; overflow-x: auto; scrollbar-width: thin; }
.artistern-home-arrival-categories button { min-height: 38px; padding: 8px 16px; flex: 0 0 auto; border: 1px solid var(--home-border); background: #fff; color: var(--home-muted); font-size: 12.5px; font-weight: 600; }
.artistern-home-arrival-categories button.is-active { border-color: var(--home-text); background: var(--home-text); color: #fff; }
.artistern-home-arrival-grid > ul.products.artistern-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.artistern-home-arrival-grid .artistern-product-card-media { height: 240px; border: 1px solid var(--home-border); background: linear-gradient(150deg, #e9e4da, #d9d2c4); }
.artistern-home-arrival-grid .artistern-product-card-media img { object-fit: cover !important; object-position: center; }
.artistern-home-arrival-grid .artistern-card-wishlist,
.artistern-home-arrival-grid .artistern-product-card-origin { display: none !important; }
.artistern-home-arrival-grid .artistern-product-card-title-line { display: flex; padding: 0; flex-direction: column; }
.artistern-home-arrival-grid .artistern-product-card-title-line h2 { order: -1; font: 400 15.5px/1.4 Georgia, serif !important; }
.artistern-home-arrival-grid .artistern-product-card-title-line h2 a { color: var(--home-text) !important; }
.artistern-home-arrival-grid .artistern-product-card-artist { margin: 2px 0 0; color: var(--home-muted); font-size: 12.5px; font-weight: 400; }
.artistern-home-arrival-grid .artistern-product-card-price { margin-top: 5px; font-size: 13.5px; }
.artistern-home-arrivals-skeleton { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.artistern-home-arrivals-skeleton span { display: block; height: 240px; background: #efede8; animation: artisternHomeSkeleton 1.1s ease-in-out infinite alternate; }
@keyframes artisternHomeSkeleton { to { opacity: .48; } }

.artistern-home-artist-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.artistern-home-artist { display: flex; min-width: 0; gap: 14px; padding: 22px; align-items: center; border: 1px solid var(--home-border); transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease; }
.artistern-home-artist:hover,
.artistern-home-artist:focus { border-color: #cfcfcf; box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); transform: translateY(-3px); }
.artistern-home-artist-avatar { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; overflow: hidden; background: linear-gradient(150deg, #d9d2c4, #c4baa6); }
.artistern-home-artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artistern-home-artist-avatar b { font: 400 23px Georgia, serif; }
.artistern-home-artist > span:last-child { min-width: 0; }
.artistern-home-artist strong { display: block; overflow: hidden; font: 400 16px/1.35 Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.artistern-home-artist small { display: block; margin-top: 2px; overflow: hidden; color: var(--home-muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }

.artistern-home-journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.artistern-home-journal-media { display: block; height: 200px; overflow: hidden; border: 1px solid var(--home-border); background: linear-gradient(150deg, #e9e4da, #d9d2c4); transition: box-shadow .25s ease, transform .25s ease; }
.artistern-home-journal-media img { width: 100%; height: 100%; object-fit: cover; }
.artistern-home-journal-card:hover .artistern-home-journal-media,
.artistern-home-journal-card:focus-within .artistern-home-journal-media { box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); transform: translateY(-4px); }
.artistern-home-journal-card > p { margin: 13px 0 6px; color: var(--home-gold); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.artistern-home-journal-card h3 { margin: 0; font: 400 17.5px/1.35 Georgia, serif; }
.artistern-home-journal-card > span { display: block; margin-top: 8px; color: var(--home-muted); font-size: 12px; }

.artistern-home-testimonial { max-width: 740px; padding-bottom: 100px; text-align: center; }
.artistern-home-testimonial::before { display: block; margin-bottom: 26px; color: var(--home-gold); content: "“"; font: 72px/.4 Georgia, serif; }
.artistern-home-testimonial blockquote { margin: 0 0 20px; font: italic 24px/1.6 Georgia, serif; }
.artistern-home-testimonial cite { color: var(--home-muted); font-size: 13px; font-style: normal; letter-spacing: .06em; text-transform: uppercase; }

.artistern-home-reveal { opacity: 1; transform: none; }
.has-artistern-home-motion .artistern-home-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.has-artistern-home-motion .artistern-home-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .artistern-home-page-shell { width: calc(100% - 40px); }
  .artistern-home-section-head h2 { font-size: 30px; }
  .artistern-home-slide-inner h1 { font-size: 48px; }
  .artistern-home-intro h2 { font-size: 34px; }
  .artistern-home-spotlight-copy h2 { font-size: 34px; }
  .artistern-home-testimonial blockquote { font-size: 22px; }
  .artistern-home-section { padding-top: 60px; }
  .artistern-home-slides { height: 64vh; }
  .artistern-home-slide-inner { padding-bottom: 84px; }
  .artistern-home-browse,
  .artistern-home-spotlight { margin-top: 60px; }
  .artistern-home-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artistern-home-spotlight-inner { min-height: 0; flex-direction: column; gap: 34px; padding-top: 52px; padding-bottom: 52px; align-items: stretch; }
  .artistern-home-spotlight-photo { width: 100%; height: 320px; flex-basis: auto; }
  .artistern-home-artist-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artistern-home-testimonial { padding-bottom: 64px; }
}

@media (max-width: 640px) {
  .artistern-home-page-shell { width: calc(100% - 32px); }
  .artistern-home-slides { height: 68vh; min-height: 520px; }
  .artistern-home-slide-inner h1 { font-size: 38px; }
  .artistern-home-slide-inner p { font-size: 15px; }
  .artistern-home-slide-dots { gap: 8px; }
  .artistern-home-slide-dot { width: 25px; }
  .artistern-home-section-head { align-items: flex-start; flex-direction: column; }
  .artistern-home-badges { grid-template-columns: 1fr; }
  .artistern-home-search { flex-direction: column; }
  .artistern-home-search .artistern-home-button { width: 100%; }
  .artistern-home-page ul.products.artistern-home-picks,
  .artistern-home-arrival-grid > ul.products.artistern-product-grid,
  .artistern-home-journal-grid { grid-template-columns: 1fr; }
  .artistern-home-product-media,
  .artistern-home-arrival-grid .artistern-product-card-media { height: auto; }
  .artistern-home-artist-list { grid-template-columns: 1fr; }
  .artistern-home-arrivals-skeleton { grid-template-columns: 1fr; }
  .artistern-home-arrivals-skeleton span { height: min(94vw, 390px); }
}

@media (prefers-reduced-motion: reduce) {
  .artistern-home-page *,
  .artistern-home-page *::before,
  .artistern-home-page *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .has-artistern-home-motion .artistern-home-reveal { opacity: 1; transform: none; }
}
