:root {
  --ink: #1b1714;
  --muted: #6b6155;
  --paper: #fffdf8;
  --soft: #faf3e4;
  --accent: #f5be2e;
  --accent-deep: #c68a12;
  --coral: #e8794e;
  --black: #16130f;
  --line: rgba(27, 23, 20, 0.1);
  --container: 1180px;
  --shadow-lift: 0 24px 60px -36px rgba(27, 23, 20, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-deep);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 56px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 56px, 760px);
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 228, 0.9);
  border-bottom: 1px solid rgba(27, 23, 20, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 56px, var(--container));
  min-height: 68px;
  margin-inline: auto;
  padding-block: 12px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text span,
.footer-brand strong {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand em,
.footer-brand em {
  color: var(--coral);
  font-style: normal;
}

.brand__text small {
  margin-top: 5px;
  color: rgba(27, 23, 20, 0.42);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.paw-logo {
  position: relative;
  display: inline-block;
  flex: none;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 13px;
  box-shadow: 0 7px 16px -7px var(--accent-deep);
}

.paw-logo--small {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.paw-logo__pad,
.paw-logo__toe {
  position: absolute;
  background: var(--ink);
  border-radius: 50%;
}

.paw-logo__pad {
  left: 14px;
  top: 21px;
  width: 14px;
  height: 11px;
}

.paw-logo__toe {
  width: 6px;
  height: 7px;
}

.paw-logo__toe--1 {
  left: 7px;
  top: 13px;
}

.paw-logo__toe--2 {
  left: 14px;
  top: 9px;
}

.paw-logo__toe--3 {
  left: 21px;
  top: 9px;
}

.paw-logo__toe--4 {
  left: 29px;
  top: 13px;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--accent);
  border: 0;
  border-radius: 11px;
  box-shadow: 0 4px 0 var(--accent-deep);
  font: inherit;
  font-weight: 800;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  padding: 9px 13px;
  color: #2a2520;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
}

.site-nav a:hover {
  color: #000;
  background: rgba(27, 23, 20, 0.05);
}

.site-nav__cta a {
  margin-left: 8px;
  background: var(--accent);
  box-shadow: 0 4px 0 var(--accent-deep);
  font-weight: 800;
}

.page-header {
  padding: clamp(50px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #fdf7e6, #faefcf);
  border-bottom: 1px solid rgba(27, 23, 20, 0.08);
}

.page-header__inner {
  display: grid;
  gap: 16px;
}

.page-header p:not(.eyebrow) {
  max-width: 760px;
  color: #5c5349;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.band {
  padding: clamp(56px, 8vw, 90px) 0;
}

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

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

.post-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 23, 20, 0.08);
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(27, 23, 20, 0.04);
  flex-direction: column;
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 23, 20, 0.08);
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(27, 23, 20, 0.04);
  flex-direction: column;
}

.post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(135deg, #fbebc4, #fbebc4 13px, #f4dda0 13px, #f4dda0 26px);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #fbebc4, #fbebc4 13px, #f4dda0 13px, #f4dda0 26px);
}

.post-card__media::before {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  content: attr(data-label);
}

.product-card__media::before,
.product-detail__media::before {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  content: attr(data-label);
}

.post-card__media span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px 12px;
  color: rgba(27, 23, 20, 0.5);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: monospace;
  font-size: 0.72rem;
  transform: translate(-50%, -50%);
}

.product-card__media span,
.product-detail__media > span {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: calc(100% - 28px);
  padding: 6px 12px;
  color: rgba(27, 23, 20, 0.5);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card__media img,
.product-detail__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
}

.post-card p {
  color: var(--muted);
}

.product-card p {
  color: var(--muted);
}

.product-card__body > p {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 2.4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.platform {
  color: var(--accent-deep) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  align-self: flex-start;
  width: fit-content;
  padding: 5px 12px;
  color: #6b4a0c;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
}

.button--primary {
  color: var(--ink);
  background: var(--accent);
  border: 0;
  box-shadow: 0 8px 0 var(--accent-deep), 0 20px 32px -14px rgba(198, 138, 18, 0.7);
}

.button--ghost {
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(27, 23, 20, 0.18);
  box-shadow: 0 8px 0 rgba(27, 23, 20, 0.16);
}

.product-card__actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9px;
  margin-top: 7px;
}

.product-card__actions .button {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.read-more {
  margin-top: auto;
  font-weight: 900;
}

.article-page {
  background: linear-gradient(180deg, #fdf7e6 0, var(--paper) 460px);
}

.article-content {
  display: grid;
  gap: 24px;
}

.article-hero-media {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: repeating-linear-gradient(135deg, #fbebc4, #fbebc4 13px, #f4dda0 13px, #f4dda0 26px);
  box-shadow: 0 28px 56px -34px rgba(27, 23, 20, 0.5);
}

.article-hero-media span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.article-image {
  width: 100%;
  max-height: 460px;
  display: block;
  border-radius: 22px;
  box-shadow: 0 28px 56px -34px rgba(27, 23, 20, 0.5);
  object-fit: cover;
}

.prose {
  display: grid;
  gap: 20px;
  color: #3a332c;
  font-size: 1.12rem;
  line-height: 1.7;
}

.back-link {
  width: fit-content;
  color: var(--muted);
  font-weight: 800;
}

.lead {
  max-width: 680px;
  color: #5c5349;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.product-detail-band {
  background: linear-gradient(180deg, #fdf7e6, var(--paper) 42%);
}

.product-detail__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #fbebc4, #fbebc4 15px, #f4dda0 15px, #f4dda0 30px);
  border-radius: 24px;
  box-shadow: 0 28px 56px -34px rgba(27, 23, 20, 0.5);
}

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

.product-detail__panel h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.affiliate-note {
  color: rgba(27, 23, 20, 0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}

.info-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 18px 20px;
  color: var(--muted);
  background: #fbf3e0;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.94rem;
}

.info-note strong {
  display: grid;
  flex: none;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 9px;
}

.ticker {
  overflow: hidden;
  padding: 13px 0;
  background: var(--accent);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marq 24s linear infinite;
}

.ticker span {
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer {
  color: #f4eedf;
  background: var(--black);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0 30px;
}

.site-footer section {
  max-width: 360px;
}

.site-footer p {
  max-width: 560px;
  color: rgba(244, 238, 223, 0.65);
}

.site-footer__links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer nav span {
  margin-bottom: 3px;
  color: rgba(244, 238, 223, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(244, 238, 223, 0.82);
  font-size: 0.96rem;
}

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

.site-footer__bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(244, 238, 223, 0.12);
}

.site-footer__bottom p {
  color: rgba(244, 238, 223, 0.5);
  font-size: 0.86rem;
}

@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 28px;
    left: 28px;
    display: none;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lift);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: space-between;
    width: 100%;
  }

  .site-nav__cta a {
    margin: 8px 0 0;
  }

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

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .brand__text small {
    display: none;
  }

  .band {
    padding: 48px 0;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .button,
  .product-detail__actions .button {
    width: 100%;
  }

  .site-footer__links {
    gap: 32px;
  }
}
