:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --gray: #767676;
  --line: #dedede;
  --soft: #f5f5f2;
  --cream: #fbfaf6;
  --accent: #6b4a2d;
  --accent-soft: #efe4d5;
  --white: #ffffff;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 30%, #fff 100%);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.08); }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  background: var(--black);
}
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand strong, .brand em { display: block; line-height: 1; }
.brand em { margin-top: 4px; color: var(--gray); font-size: 13px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; gap: 22px; color: #3d3d3d; font-size: 14px; }
nav a:hover { color: var(--black); }

.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.button.primary { background: var(--black); color: var(--white); box-shadow: 0 14px 28px rgba(0,0,0,.14); }
.button.secondary { background: var(--white); color: var(--black); }
.button.ghost { background: transparent; color: var(--black); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
  padding: 26px 34px 20px;
  min-height: 0;
}
.hero-copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 12% 8%, rgba(107,74,45,.16), transparent 36%),
    linear-gradient(140deg, #fff, #f1f1ee);
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
}
.eyebrow { margin: 0 0 18px; color: var(--gray); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; font-size: clamp(30px, 4vw, 50px); line-height: 1; letter-spacing: -.04em; margin-bottom: 16px; }
h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1; letter-spacing: -.035em; margin-bottom: 18px; }
h3 { letter-spacing: -.02em; }
.hero-text { color: #3b3b3b; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.45; max-width: 720px; }
.catalog-summary {
  display: inline-flex;
  width: fit-content;
  max-width: 720px;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 999px;
  padding: 8px 12px;
  color: #343434;
  background: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.hero-frame { position: relative; overflow: hidden; border-radius: 28px; min-height: 300px; max-height: 460px; background: var(--black); }
.logo-hero { display: grid; place-items: center; padding: 18px; aspect-ratio: 1 / 1; }
.hero-logo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.hero-logo-fallback { z-index: 1; }
.watermark {
  position: absolute;
  inset: auto 24px 24px 24px;
  border: 1px solid rgba(255,255,255,.55);
  color: rgba(255,255,255,.74);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.watermark.small {
  inset: 14px 14px auto 14px;
  z-index: 4;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.36);
  font-size: 12px;
  padding: 10px 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 34px 64px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.stats div { background: rgba(255,255,255,.86); padding: 24px; }
.stats strong { display: block; font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.stats span { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }

.section-heading, .split-section, .fulfillment, .admin-preview { padding: 0 34px 70px; }
.section-heading p:not(.eyebrow) { color: var(--gray); font-size: 19px; max-width: 720px; }

.shop-shell { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 24px; padding: 0 34px 100px; }
.filters { position: sticky; top: 98px; align-self: start; display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: rgba(255,255,255,.82); box-shadow: 0 18px 45px rgba(0,0,0,.05); backdrop-filter: blur(14px); }
.filters h3 { margin-bottom: 12px; }
.filter {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  padding: 12px 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: #4f4f4f;
}
.filter:hover, .filter.active { background: var(--black); color: var(--white); border-color: var(--black); }
.filter:focus-visible, .animal-card:focus-visible, .photo-card:focus-visible, .buy-button:focus-visible, .button:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 3px; }
.gallery { display: grid; gap: 18px; }
.filter-help { margin: 0 0 6px; color: var(--gray); line-height: 1.35; font-size: 14px; }
.animal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.animal-card-grid.is-filtered { grid-template-columns: minmax(260px, 420px); }
.animal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  background: var(--black);
  display: block;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.animal-card:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(0,0,0,.14); }
.animal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.18) 54%, rgba(0,0,0,.08) 100%);
}
.animal-card img { transition: transform .35s ease; filter: grayscale(.75) contrast(1.04) brightness(1.12); }
.animal-card:hover img { transform: scale(1.045); }
.collection-hero {
  margin: 34px 34px 24px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 0%, rgba(107,74,45,.14), transparent 34%),
    linear-gradient(140deg, #fff, #f1f1ee);
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
}
.collection-hero p:not(.eyebrow) { color: #4f4f4f; font-size: clamp(16px, 1.65vw, 20px); line-height: 1.45; max-width: 920px; }
.animal-shop-shell { padding: 0 34px 100px; }
.related-collections { display: grid; gap: 16px; margin-top: 22px; }
.related-heading h2 { margin-bottom: 0; font-size: clamp(26px, 3vw, 38px); }
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.related-grid .animal-card { min-height: 220px; }
.animal-photo-grid { display: grid; }
.category-section {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
}
.category-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 20px 22px;
  background: var(--black);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.category-heading small,
.category-heading strong { display: block; }
.category-heading small {
  margin-bottom: 5px;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
.category-heading strong { font-size: clamp(24px, 3vw, 38px); letter-spacing: -.04em; }
.category-heading em {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255,255,255,.82);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.category-description {
  display: none;
  margin: 0;
  padding: 16px 22px 0;
  color: #606060;
  line-height: 1.45;
}
.category-photo-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 16px;
  padding: 18px;
}
.category-section.is-expanded .category-description { display: block; }
.category-section.is-expanded .category-photo-grid { display: grid; }
.photo-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--black); min-height: 190px; cursor: pointer; box-shadow: 0 14px 34px rgba(0,0,0,.08); transition: transform .2s ease, box-shadow .2s ease; }
.photo-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,.14); }
.photo-card.tall { grid-row: span 2; }
.photo-card.wide { grid-column: span 2; }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.08) 100%); z-index: 1; }
.photo-card img { transition: transform .35s ease; filter: grayscale(.75) contrast(1.04) brightness(1.12); }
.photo-card:hover img { transform: scale(1.045); }
.card-copy { position: absolute; z-index: 3; left: 18px; right: 18px; bottom: 16px; color: var(--white); }
.card-copy span { display: block; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; margin-bottom: 6px; }
.card-copy h3 { margin-bottom: 5px; font-size: 25px; }
.card-copy p { margin: 0; color: rgba(255,255,255,.78); }
.photo-card.is-hidden { display: none; }
.catalog-loading,
.catalog-error {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--gray);
  background: var(--soft);
}
body.drawer-open { overflow: hidden; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  border: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.product-drawer {
  position: fixed;
  z-index: 60;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(320px, 42vw) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--white);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.product-drawer.is-open { transform: translateY(0); opacity: 1; }
.drawer-media { position: relative; min-height: 0; background: var(--black); overflow: hidden; }
.drawer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-28deg, rgba(255,255,255,.16) 0 2px, transparent 2px 72px);
}
.product-drawer img { filter: grayscale(1) contrast(1.05); object-fit: cover; width: 100%; height: 100%; display: block; }
.drawer-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  z-index: 2;
  width: 120%;
  text-align: center;
  color: rgba(255,255,255,.46);
  font-weight: 900;
  font-size: clamp(28px, 8vw, 72px);
  letter-spacing: .2em;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  pointer-events: none;
}
.drawer-copy { overflow: auto; min-height: 0; padding: 24px; -webkit-overflow-scrolling: touch; }
.drawer-copy h2 { font-size: 38px; }
.drawer-copy h3 { margin: 22px 0 8px; }
.drawer-copy p { color: #555; line-height: 1.5; }
.drawer-copy .note { color: #8a5a00; font-weight: 800; }
.drawer-buy-hint { border: 1px solid rgba(0,0,0,.12); border-radius: 16px; padding: 12px 14px; background: #fffbe9; color: #3e321d !important; font-weight: 900; }
.buy-group { border: 1px solid rgba(0,0,0,.14); border-radius: 18px; margin: 14px 0; background: var(--soft); overflow: hidden; box-shadow: 0 10px 26px rgba(0,0,0,.04); }
.buy-group summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; cursor: pointer; font-weight: 900; }
.buy-group summary small { color: #666; font-weight: 800; white-space: nowrap; }
.buy-group[open] summary { border-bottom: 1px solid rgba(0,0,0,.1); }
.product-mockup {
  position: relative;
  width: 96px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  background: #efefec;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32);
}
.product-mockup img { filter: none; }
.mockup-product,
.mockup-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-drawer .mockup-art { z-index: 1; opacity: .86; filter: grayscale(.85) contrast(1.08); object-fit: cover; }
.product-drawer .mockup-product { z-index: 2; object-fit: contain; opacity: .82; padding: 6px; box-sizing: border-box; filter: grayscale(1) contrast(1.08) drop-shadow(0 8px 16px rgba(0,0,0,.28)); mix-blend-mode: multiply; }
.product-drawer .product-mockup.is-wall-art .mockup-product,
.product-drawer .product-mockup.is-digital .mockup-product { opacity: .86; }
.buy-list {
  display: grid;
  gap: .8rem;
  max-height: none;
  overflow: visible;
  padding: .8rem;
}
.buy-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: .65rem;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: .75rem;
  background: rgba(255,255,255,.78);
}
.buy-row .product-mockup { width: 74px; border-radius: 12px; }
.buy-row strong,
.buy-row small { display: block; }
.buy-row small { color: #666; line-height: 1.35; margin-top: .25rem; }
.variant-picker { display: grid; gap: .3rem; margin-top: .65rem; font-size: 12px; font-weight: 900; color: #555; text-transform: uppercase; letter-spacing: .04em; }
.variant-picker select {
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  padding: .65rem .75rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.selected-variant-price { color: var(--accent) !important; font-weight: 900; }
.buy-button {
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.buy-button:disabled { cursor: wait; opacity: .75; }
.buy-button.is-error { background: #9b261b; }
.buy-error { grid-column: 1 / -1; color: #9b261b !important; }
.drawer-close {
  position: sticky;
  grid-column: 1 / -1;
  z-index: 7;
  top: 0;
  margin: 10px 12px 8px auto;
  display: block;
  min-width: 94px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.split-section > div:first-child p:not(.eyebrow), .admin-preview p { color: var(--gray); font-size: 18px; line-height: 1.55; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 14px; align-items: start; }
.pricing-grid article { background: var(--soft); border-radius: var(--radius); padding: 20px 22px; min-height: 0; display: flex; flex-direction: column; gap: 8px; }
.pricing-grid h3 { margin-bottom: 0; }
.pricing-grid p { color: #5f5f5f; line-height: 1.38; margin-bottom: 0; }
.pricing-grid ul { margin: 0; padding-left: 20px; color: #5f5f5f; line-height: 1.45; }
.pricing-grid li + li { margin-top: 4px; }
.pricing-grid strong { margin-top: auto; font-size: 30px; letter-spacing: -.06em; }

.fulfillment { background: var(--black); color: var(--white); margin: 0 34px 100px; padding: 56px; border-radius: 34px; }
.fulfillment .eyebrow, .fulfillment .note { color: rgba(255,255,255,.6); }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 30px 0 20px; }
.flow span { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 14px 16px; text-align: center; font-weight: 800; }

.admin-preview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.upload-card { border: 1px solid var(--line); border-radius: 28px; padding: 22px; display: grid; gap: 14px; background: var(--soft); }
.upload-card label { display: grid; gap: 8px; color: #555; font-weight: 700; }
input, select { border: 1px solid #cfcfcf; border-radius: 16px; padding: 14px 15px; font: inherit; background: var(--white); }

.inline-link { color: var(--black); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.product-cta { width: fit-content; margin-top: auto; background: var(--black); color: var(--white); text-decoration: none; padding: 10px 14px; font-size: 14px; }

.product-inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
  align-items: start;
  padding: 0 34px 100px;
}
.product-inventory-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.84);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-inventory-card:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,.12); }
.product-thumb {
  width: calc(100% + 36px);
  aspect-ratio: 16 / 10;
  height: auto;
  margin: -18px -18px 8px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.06);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.product-inventory-card.featured { background: #fffbe9; border-color: var(--black); }
.product-inventory-card .product-cta:hover { box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.product-inventory-card p:not(.eyebrow) { color: #555; line-height: 1.45; }
.product-inventory-card strong { margin-top: 4px; font-size: 24px; letter-spacing: -.04em; }
.upload-shell { padding: 0 34px 100px; display: grid; gap: 18px; }
.dropzone {
  position: relative;
  min-height: 260px;
  border: 2px dashed #aaa;
  border-radius: 30px;
  background: var(--soft);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}
.dropzone.is-dragging { border-color: var(--black); background: #fffbe9; }
.dropzone strong { font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; }
.dropzone input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; pointer-events: none; }
.upload-results {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  color: #555;
}
.upload-results p { margin: 0 0 8px; }

footer { display: flex; justify-content: space-between; gap: 18px; padding: 34px; background: var(--black); color: var(--white); }
footer span { color: rgba(255,255,255,.6); }
footer a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.policy-grid { padding: 0 34px 100px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.policy-grid article { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--white); }
.policy-grid h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 10px; }
.policy-grid p:not(.eyebrow) { color: #555; line-height: 1.55; }
.clean-print-grid { padding: 0 34px 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.clean-print-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: var(--white); display: grid; gap: 8px; }
.clean-print-card.needs-replacement { border-color: #c56a2d; background: #fff8f1; }
.clean-print-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; background: var(--soft); }
.clean-print-card h3 { margin: 0; font-size: 19px; }
.clean-print-card p { margin: 0; color: #666; text-transform: capitalize; }
.clean-print-issues ul { margin: 10px 0 20px; padding-left: 20px; color: #555; line-height: 1.55; }
.review-badge { display: inline-flex; width: fit-content; border-radius: 999px; padding: 5px 9px; background: #f1e2cf; color: #6f421d; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 1050px) {
  nav { display: none; }
  .hero, .split-section, .admin-preview { grid-template-columns: 1fr; }
  .hero-frame { min-height: 260px; max-height: none; }
  .shop-shell { grid-template-columns: 1fr; }
  .filters { position: sticky; top: 72px; z-index: 10; display: flex; flex-direction: row; align-items: center; gap: 8px; overflow-x: auto; padding: 10px; border-radius: 18px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .filters h3 { flex: 0 0 auto; margin: 0 6px 0 0; font-size: 14px; white-space: nowrap; }
  .filter-help { display: none; }
  .filter { flex: 0 0 auto; width: auto; white-space: nowrap; scroll-snap-align: start; padding: 10px 12px; }
  .animal-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .product-inventory-grid { padding-left: 18px; padding-right: 18px; }
  .product-drawer {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(120px, 24dvh) minmax(0, 1fr);
    border-radius: 0;
    border: 0;
  }
}
@media (max-width: 700px) {
  .hero .logo-hero { display: none; }
  .site-header { padding: 14px 18px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mobile-bottom-nav { position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 55; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(12,12,12,.92); box-shadow: 0 16px 40px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
  .mobile-bottom-nav a { color: var(--white); text-align: center; text-decoration: none; font-weight: 900; font-size: 13px; padding: 10px 8px; border-radius: 999px; }
  .mobile-bottom-nav a:hover, .mobile-bottom-nav a:focus-visible { background: rgba(255,255,255,.14); }
  .button.ghost { display: none; }
  .hero, .stats, .shop-shell, .section-heading, .split-section, .admin-preview { padding-left: 18px; padding-right: 18px; }
  .product-inventory-grid { padding-bottom: 70px; }
  .product-inventory-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 14px;
    min-height: 0;
  }
  .product-inventory-card > :not(.product-thumb) { grid-column: 2; }
  .product-thumb {
    grid-column: 1;
    grid-row: 1 / span 6;
    width: 112px;
    height: 112px;
    aspect-ratio: 1 / 1;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .product-inventory-card .eyebrow { margin-bottom: 0; font-size: 10px; }
  .product-inventory-card h3 { margin-bottom: 0; font-size: 20px; line-height: 1.05; }
  .product-inventory-card p:not(.eyebrow) { margin-bottom: 0; font-size: 14px; line-height: 1.32; }
  .product-inventory-card strong { margin-top: 0; font-size: 18px; }
  .product-inventory-card .inline-link, .product-inventory-card .product-cta { font-size: 14px; padding: 9px 11px; }
  .stats { margin-left: 18px; margin-right: 18px; grid-template-columns: 1fr 1fr; }
  .animal-card-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .animal-card { min-height: 300px; }
  .collection-hero { margin: 22px 18px 18px; padding: 22px 18px; }
  .animal-shop-shell { margin-left: 18px; margin-right: 18px; padding-left: 0; padding-right: 0; }
  .category-photo-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; padding: 12px; }
  .category-heading { align-items: flex-start; flex-direction: column; }
  .category-heading em { align-self: flex-start; }
  .photo-card.wide { grid-column: span 1; }
  .pricing-grid, .flow { grid-template-columns: 1fr; }
  .policy-grid, .clean-print-grid { grid-template-columns: 1fr; padding-left: 18px; padding-right: 18px; }
  .fulfillment { margin-left: 18px; margin-right: 18px; padding: 30px; }
  .product-drawer {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(120px, 24dvh) minmax(0, 1fr);
    border-radius: 0;
    border: 0;
  }
  .drawer-copy { padding: 14px 16px calc(22px + env(safe-area-inset-bottom)); }
  .drawer-copy h2 { font-size: 28px; }
  .drawer-close {
    top: 8px;
    margin-top: 0;
    min-width: 108px;
    height: 46px;
  }
  .drawer-watermark { font-size: clamp(30px, 11vw, 54px); }
  .buy-row { grid-template-columns: 74px minmax(0, 1fr); }
  .buy-row .product-mockup { width: 74px; }
  .buy-row .buy-button { grid-column: 1 / -1; width: 100%; }
  footer { flex-direction: column; }
}

.inline-link { text-decoration: underline; text-underline-offset: 3px; }
.policy-grid article p { color: #404040; line-height: 1.55; }
.contact-panel { margin: 0 34px 54px; }
.contact-panel > p { max-width: 820px; color: #3d3d3d; line-height: 1.55; }
.contact-form { display: grid; gap: 14px; max-width: 760px; margin-top: 20px; }
.contact-form label { display: grid; gap: 7px; color: #555; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid #cfcfcf; border-radius: 16px; padding: 14px 15px; font: inherit; background: var(--white); color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.hidden-field { display: none; }


.mobile-bottom-nav { display: none; }

@media (max-width: 700px) {
  .mobile-bottom-nav { position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 55; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(12,12,12,.92); box-shadow: 0 16px 40px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
  .mobile-bottom-nav a { color: var(--white); text-align: center; text-decoration: none; font-weight: 900; font-size: 13px; padding: 10px 8px; border-radius: 999px; }
  .mobile-bottom-nav a:hover, .mobile-bottom-nav a:focus-visible { background: rgba(255,255,255,.14); }
}
