:root {
  --bg: #F5F0E8;
  --fg: #1C1C1A;
  --muted: #7A7060;
  --accent: #E8734A;
  --ink: #2D4A3E;
  --card-bg: #EDEBE3;
  --navy: #1A2E28;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 18px 40px;
  border-bottom: 1.5px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.hero {
  padding: 80px 40px 72px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-headline {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.08;
  color: var(--bg);
  margin-bottom: 4px;
}
.hero-headline--offset {
  margin-left: 32px;
  color: var(--accent);
}
.hero-headline--accent {
  margin-top: 16px;
  color: #FFFFFF;
  opacity: 0.25;
}
.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: rgba(245,240,232,0.7);
  max-width: 480px;
  font-weight: 300;
}

/* Hero Art */
.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.paw-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.paw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.paw-pad {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}
.paw--lg .paw-pad { width: 28px; height: 28px; }
.paw--sm .paw-pad { width: 20px; height: 20px; opacity: 0.5; }
.paw--xs .paw-pad { width: 14px; height: 14px; opacity: 0.35; }
.paw-toe-row {
  display: flex;
  gap: 3px;
}
.paw-toe {
  width: 14px;
  height: 18px;
  background: var(--accent);
  border-radius: 50% 50% 40% 40%;
  opacity: 0.7;
}
.paw--sm .paw-toe { width: 10px; height: 14px; opacity: 0.5; }
.paw--xs .paw-toe { width: 8px; height: 11px; opacity: 0.35; }
.thumb-x {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.thumb-x-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.hero-mascot {
  width: 120px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-top: 8px;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.manifesto-statement {
  margin-bottom: 48px;
}
.manifesto-statement p {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.manifesto-statement em {
  font-style: normal;
  color: var(--accent);
  font-family: 'Permanent Marker', cursive;
}
.manifesto-consequence {
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}
.manifesto-consequence > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}
.manifesto-list {
  list-style: none;
  margin-bottom: 24px;
}
.manifesto-list li {
  font-size: 20px;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifesto-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.manifesto-consequence-note {
  font-family: 'Permanent Marker', cursive;
  font-size: 15px;
  color: var(--accent);
  margin-top: 16px;
}

/* PRODUCTS */
.products {
  padding: 72px 40px;
  background: var(--card-bg);
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ink);
  margin-bottom: 48px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-icon {
  margin-bottom: 20px;
}
.product-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* JOKES */
.jokes {
  padding: 72px 40px;
  background: var(--ink);
  color: var(--bg);
}
.jokes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.jokes .section-title {
  color: var(--bg);
}
.jokes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.joke {
  text-align: center;
  padding: 28px 20px;
  background: rgba(245,240,232,0.07);
  border-radius: 10px;
}
.joke-ani {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.joke-text {
  font-size: 15px;
  color: rgba(245,240,232,0.8);
  line-height: 1.5;
}
.jokes-cta {
  margin-top: 40px;
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: var(--accent);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--accent);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}
.closing-text--muted {
  opacity: 0.65;
  margin-top: 12px;
}
.closing-brand {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.closing-logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 52px;
  color: var(--navy);
}
.closing-tagline {
  font-size: 15px;
  color: var(--navy);
  opacity: 0.7;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  background: var(--navy);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: rgba(245,240,232,0.6);
}
.footer-note {
  font-size: 13px;
  color: rgba(245,240,232,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .jokes-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-statement p { font-size: 26px; }
  .nav { padding: 18px 24px; }
  .hero, .manifesto, .products, .jokes, .closing { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .jokes-grid { grid-template-columns: 1fr; }
}