:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66645f;
  --soft: #f4f3ef;
  --paper: #ffffff;
  --line: #dedbd3;
  --moss: #5d6c49;
  --moss-dark: #35402d;
  --bronze: #9b7454;
  --shadow: 0 24px 70px rgba(20, 20, 18, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.home-minimal {
  background: #fff;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 12px 14px 12px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(222, 219, 211, 0.82);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(20, 20, 18, 0.07);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 720;
  letter-spacing: 0;
}

.brand-mark small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.minimal-header .brand-mark span {
  font-size: 19px;
}

.minimal-footer {
  align-items: center;
}

.split-hero {
  position: relative;
  width: min(calc(100% - 28px), 1180px);
  min-height: clamp(320px, 45vw, 560px);
  margin: clamp(28px, 5vw, 64px) auto clamp(46px, 7vw, 86px);
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(222, 219, 211, 0.9);
  isolation: isolate;
}

.split-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.split-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("./assets/hero-lineup.jpg");
  background-repeat: no-repeat;
  background-size: min(100%, 1120px) auto;
  background-position-y: center;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  filter: drop-shadow(0 22px 30px rgba(20, 20, 18, 0.08));
}

.split-left {
  clip-path: inset(0 50% 0 0);
  background-position-x: center;
}

.split-right {
  clip-path: inset(0 0 0 50%);
  background-position-x: center;
}

.split-hero:hover .split-left,
.split-hero:focus-within .split-left {
  transform: translateX(-31%);
  filter: drop-shadow(0 24px 34px rgba(20, 20, 18, 0.05));
}

.split-hero:hover .split-right,
.split-hero:focus-within .split-right {
  transform: translateX(31%);
  filter: drop-shadow(0 24px 34px rgba(20, 20, 18, 0.05));
}

.studio-reveal {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(440px, 72vw);
  padding: 28px;
  text-align: center;
  transform: translate(-50%, -45%);
  opacity: 0;
  transition:
    opacity 360ms ease 180ms,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.split-hero:hover .studio-reveal,
.split-hero:focus-within .studio-reveal {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.studio-reveal img {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.studio-reveal h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1;
}

.studio-reveal p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.home-series-section {
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto clamp(52px, 7vw, 86px);
}

.home-series-section h2 {
  margin: 0 0 18px;
  color: #2d2c29;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-align: center;
}

.home-series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  background: #4b4b4a;
  border-radius: 8px;
}

.home-series-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #222;
  border-radius: 7px;
}

.home-series-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent);
  content: "";
}

.home-series-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.home-series-card span,
.home-series-card h3 {
  position: absolute;
  z-index: 2;
  left: 18px;
}

.home-series-card span {
  top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 820;
}

.home-series-card h3 {
  bottom: 18px;
  margin: 0;
  max-width: 1em;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.standalone-series .section-heading h1 {
  margin: 12px 0 0;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.95;
}

.series-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 60px 0;
}

.series-placeholder .back-link {
  grid-column: 1 / -1;
}

.series-placeholder img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.series-placeholder span {
  color: var(--moss);
  font-size: 13px;
  font-weight: 820;
}

.series-placeholder h1 {
  margin: 12px 0 0;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.95;
}

.series-placeholder p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: #3a3935;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.icon-button,
.floating-search {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 7px;
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: min(calc(100% - 32px), var(--max));
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0 24px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-copy p {
  width: min(100%, 530px);
  margin: 26px 0 0;
  color: #474540;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 760;
}

.primary-link {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 20, 18, 0.18);
}

.primary-link.compact {
  width: fit-content;
}

.secondary-link {
  border: 1px solid var(--line);
  background: #fff;
  color: #2d2c29;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(180deg, #fff 0%, #f6f5f1 100%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(23, 23, 23, 0.32);
  content: "studio lineup";
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(60, 55, 43, 0.12));
}

.section-heading {
  width: min(100%, 680px);
  margin-bottom: 30px;
}

.section-heading h2,
.brand-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.brand-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.series-section,
.gallery-section,
.materials-section,
.brand-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
}

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

.series-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
  isolation: isolate;
  scroll-margin-top: 110px;
}

.series-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.series-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 100%);
  content: "";
}

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

.series-card-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.series-card-content span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
}

.series-card-content h3 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.1;
}

.series-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.series-enter {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  color: #151515;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 820;
}

.subseries-section,
.artwork-file {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
  scroll-margin-top: 110px;
}

.subseries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.subseries-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border-radius: 8px;
  isolation: isolate;
}

.subseries-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 36%);
  content: "";
}

.subseries-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.subseries-card:hover img {
  transform: scale(1.045);
}

.subseries-card span,
.subseries-card h3,
.subseries-card p {
  position: absolute;
  z-index: 2;
  left: 24px;
  margin: 0;
}

.subseries-card span {
  top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.subseries-card h3 {
  bottom: 74px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.subseries-card p {
  right: 24px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.artwork-file {
  border-top: 1px solid var(--line);
}

.pig-series-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0 clamp(42px, 7vw, 82px);
}

.pig-series-intro .section-heading h1 {
  margin: 12px 0 0;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.92;
}

.back-link {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.back-link:hover {
  color: var(--ink);
}

.pig-work-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(20, 20, 18, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pig-work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(20, 20, 18, 0.12);
}

.pig-work-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 6px;
}

.pig-work-card span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 820;
}

.pig-work-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.pig-work-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

.artwork-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 22px;
}

.artwork-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: #141414;
  border-radius: 8px;
}

.file-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.artwork-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
}

.latin-name {
  margin: 12px 0 0;
  color: #b9a48e;
  font-size: 18px;
  font-style: italic;
}

.artwork-copy p:not(.latin-name) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.artwork-hero > img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artwork-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.artwork-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.artwork-gallery img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artwork-gallery img:nth-child(3) {
  grid-column: 1 / -1;
  max-height: 820px;
  object-fit: contain;
}

.artwork-info {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(20, 20, 18, 0.08);
}

.artwork-info h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.artwork-info h3:not(:first-child) {
  margin-top: 28px;
}

.artwork-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.info-list,
.release-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.info-list div,
.release-grid div {
  padding: 14px;
  background: var(--soft);
  border-radius: 6px;
}

.info-list dt {
  color: var(--moss);
  font-size: 12px;
  font-weight: 820;
}

.info-list dd {
  margin: 5px 0 0;
  font-weight: 720;
}

.release-grid strong,
.release-grid span {
  display: block;
}

.release-grid strong {
  font-size: 14px;
}

.release-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 30px;
}

.gallery-heading {
  position: sticky;
  top: 100px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #3c3a36;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
}

.filter-button.active {
  border-color: var(--moss-dark);
  background: var(--moss-dark);
  color: #fff;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-product img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.featured-product > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-product span,
.product-card span,
.spec-band span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 820;
}

.featured-product h3 {
  margin: 9px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.featured-product p {
  margin: 16px 0 0;
  color: #55524b;
  line-height: 1.75;
}

.featured-product dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.featured-product dt {
  color: #878176;
  font-size: 12px;
  font-weight: 760;
}

.featured-product dd {
  margin: 4px 0 0;
  font-weight: 720;
  line-height: 1.5;
}

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

.product-card {
  display: grid;
  grid-template-rows: 170px auto auto;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover,
.product-card.active {
  border-color: rgba(53, 64, 45, 0.62);
  box-shadow: 0 14px 30px rgba(20, 20, 18, 0.08);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 5px;
}

.product-card strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.materials-section {
  background: linear-gradient(180deg, #fff 0%, #f7f6f2 100%);
  border-top: 1px solid var(--line);
}

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

.fact-item {
  min-height: 230px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fact-item svg {
  color: var(--bronze);
}

.fact-item > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--bronze);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.fact-item h3 {
  margin: 32px 0 8px;
  font-size: 19px;
}

.fact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.spec-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-band div {
  padding: 24px;
  background: #fff;
}

.spec-band strong {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.brand-image {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-image img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  padding: 18px;
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: #5c5953;
  font-size: 13px;
  font-weight: 700;
}

.site-footer a {
  color: var(--ink);
}

.floating-search {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 20, 18, 0.14);
}

@media (max-width: 980px) {
  .hero-section,
  .gallery-layout,
  .featured-product,
  .brand-section,
  .series-placeholder {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .series-grid,
  .facts-grid,
  .spec-band,
  .subseries-grid,
  .artwork-hero,
  .artwork-layout,
  .pig-series-intro {
    grid-template-columns: 1fr;
  }

  .series-card,
  .series-card img {
    min-height: 390px;
  }

  .gallery-heading {
    position: static;
  }

  .artwork-info {
    position: static;
  }

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

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

  .home-series-card,
  .home-series-card img {
    min-height: 330px;
  }

  .series-placeholder img {
    height: 380px;
  }
}

@media (max-width: 720px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .hero-section {
    width: calc(100% - 24px);
    padding-top: 42px;
  }

  .split-hero {
    width: calc(100% - 24px);
    min-height: 560px;
    margin-top: 22px;
  }

  .split-panel {
    top: 0;
    height: 280px;
    background-size: 96% auto;
    background-position: center 44%;
  }

  .split-hero:hover .split-left,
  .split-hero:focus-within .split-left,
  .split-hero:hover .split-right,
  .split-hero:focus-within .split-right {
    transform: none;
  }

  .studio-reveal {
    top: 330px;
    width: 100%;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .split-hero:hover .studio-reveal,
  .split-hero:focus-within .studio-reveal {
    transform: translate(-50%, 0);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 18vw, 78px);
  }

  .hero-media {
    min-height: 260px;
    padding: 12px;
  }

  .hero-media img {
    min-height: 240px;
  }

  .series-section,
  .gallery-section,
  .materials-section,
  .brand-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .featured-product img {
    height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    grid-template-rows: 134px auto auto;
  }

  .product-card img {
    height: 134px;
  }

  .brand-image img {
    height: 380px;
  }

  .home-series-section {
    width: calc(100% - 24px);
  }

  .home-series-grid {
    gap: 10px;
    padding: 10px;
  }

  .home-series-card,
  .home-series-card img {
    min-height: 240px;
  }

  .home-series-card h3 {
    font-size: 30px;
  }

  .series-placeholder {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 38px 0;
  }

  .subseries-section,
  .artwork-file,
  .pig-series-intro {
    width: calc(100% - 24px);
  }

  .subseries-card,
  .subseries-card img {
    min-height: 310px;
  }

  .artwork-hero > img {
    height: 340px;
  }

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

  .artwork-gallery img,
  .artwork-gallery img:nth-child(3) {
    grid-column: auto;
    min-height: 280px;
    max-height: none;
  }

  .floating-search {
    display: none;
  }
}
