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

:root {
  --fur: #efeae3;
  --paper: #f4efe7;
  --stone: #c2b3a0;
  --leather: #3a271c;
  --charcoal: #141210;
  --charcoal-soft: #1f1b18;
  --amber: #e08a24;
  --amber-bright: #f4b24a;
  --lime: #c5e24a;
  --lime-deep: #9fc52a;
  --ink: #161412;
  --muted: #7a6e62;
  --line: rgba(176, 154, 110, 0.3);
  --font-display: "Syne", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.2rem, 4vw, 3.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.stripe-hairline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 120;
  background: linear-gradient(
    90deg,
    var(--charcoal) 0 18%,
    #6c675f 18% 36%,
    var(--amber) 36% 52%,
    var(--lime) 52% 78%,
    #f4f1ea 78% 100%
  );
}

.paw-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  overflow: hidden;
}

.paw-stamp {
  position: absolute;
  width: var(--paw-size, 36px);
  height: var(--paw-size, 36px);
  margin: calc(var(--paw-size, 36px) / -2) 0 0 calc(var(--paw-size, 36px) / -2);
  color: var(--lime);
  opacity: 0;
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.4);
  animation: paw-press var(--paw-life, 1.3s) ease-out forwards;
}

.paw-stamp svg { width: 100%; height: 100%; display: block; }

@keyframes paw-press {
  0% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.4); }
  18% { opacity: 0.55; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(calc(var(--rot) + 8deg)) scale(0.9); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 0.85rem var(--pad);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 239, 231, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-logo,
.footer .nav-brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  background: var(--fur);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--leather);
}

.nav-links a:hover { color: var(--amber); }

.nav-end { display: flex; align-items: center; gap: 0.45rem; }

.nav-chip {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--fur);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-chip:hover { background: #2a2420; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--fur);
  overflow: hidden;
  display: grid;
  place-items: end center;
}

.hero-media { position: absolute; inset: 0; }

.hero-banner {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.18) 0%, rgba(20, 18, 16, 0.08) 38%, rgba(20, 18, 16, 0.82) 100%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  padding: 8rem var(--pad) 4.5rem;
  text-align: center;
  overflow: visible;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.9rem;
}

.story .eyebrow,
.looks .eyebrow,
.faq .eyebrow,
.token .eyebrow { color: var(--amber); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 10.5vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow: visible;
  padding: 0.06em 0;
  background: linear-gradient(180deg, #fff8e8 0%, var(--amber-bright) 58%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-style: italic;
  color: var(--lime);
}

.hero-lede {
  max-width: 24em;
  margin: 0.85rem auto 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: #f3e4c4;
}

.hero-coin-wrap {
  width: min(168px, 38vw);
  margin: 1.6rem auto 0;
}

.hero-coin {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  background: var(--fur);
  box-shadow:
    0 0 0 6px rgba(197, 226, 74, 0.32),
    0 24px 50px rgba(0, 0, 0, 0.45);
  animation: coin-float 6s ease-in-out infinite;
}

@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.8rem);
  margin-top: 1.8rem;
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.04em;
  color: var(--amber-bright);
}

.hero-stats dd {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbb48a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
}

.btn-lime {
  background: linear-gradient(180deg, #d8f06a, var(--lime-deep));
  color: #1a160c;
}

.btn-ghost {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1.5px currentColor;
}

.hero .btn-ghost { color: var(--fur); }

.looks-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 88px;
}

.look-chip {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15rem;
  padding: 0.9rem 1rem 1rem;
  min-height: 88px;
}

.look-chip b {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.look-chip span {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-style: italic;
}

.look-owl { background: #ece8e1; color: var(--leather); }
.look-ewok { background: #8a6a48; color: #f6edd9; }
.look-grinch { background: #2f5a32; color: #e7f3c8; }
.look-lorax { background: var(--amber); color: #1a1006; }
.look-gremlin { background: #4a3a2a; color: var(--fur); }
.look-scientist { background: var(--charcoal); color: var(--lime); }

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: 5.5rem var(--pad) 5.5rem;
}

.story h2,
.looks h2,
.social h2,
.faq h2,
.token h2,
.buy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.story p,
.token-intro p,
.looks-head p,
.social-head p { color: var(--muted); max-width: 36em; }

.story strong { color: var(--ink); }

.story-media { position: relative; }

.story-media > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 4px;
}

.story-coin {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: min(42%, 210px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  background: var(--fur);
  box-shadow: 0 18px 40px rgba(17, 12, 8, 0.28);
}

.story-copy blockquote {
  margin: 1.4rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--lime-deep);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--lime-deep);
}

.looks {
  padding: 1rem 0 5rem;
  background: var(--charcoal);
  color: var(--fur);
}

.looks .eyebrow { color: var(--lime); }
.looks h2 { color: var(--fur); }

.looks-head {
  padding: 3.5rem var(--pad) 1.6rem;
}

.looks-head p { color: #cbb48a; }

.looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  padding: 0 var(--pad) 2.2rem;
}

.look-card {
  padding: 1.4rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 226, 74, 0.16);
  min-height: 160px;
}

.look-card b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.45rem;
  color: var(--amber-bright);
}

.look-card p { color: #cbb48a; font-size: 0.95rem; }

.look-card.featured {
  background: var(--fur);
  color: var(--ink);
  transform: rotate(1.2deg);
}

.look-card.featured img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}

.look-card.featured b { color: var(--leather); }
.look-card.featured p { color: var(--muted); }

.social {
  padding: 5.5rem var(--pad) 5rem;
  background:
    linear-gradient(180deg, rgba(197, 226, 74, 0.08), transparent 22%),
    var(--paper);
}

.social-head { max-width: 38em; margin-bottom: 2rem; }

.social-board {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.15rem;
  align-items: start;
}

.embed-panel {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(58, 39, 28, 0.1);
  box-shadow: 0 24px 54px rgba(58, 39, 28, 0.1);
  padding: 0.9rem;
  border-radius: 18px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  padding: 0.15rem 0.2rem 0.75rem;
  border-bottom: 1px solid rgba(58, 39, 28, 0.08);
}

.panel-id {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.panel-id img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

.panel-id strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.panel-id span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.embed-frame {
  min-width: 0;
  background: #faf7f2;
  border-radius: 12px;
  overflow: hidden;
}

.ig-grid iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
  background: #faf7f2;
}

.tiktok-frame {
  display: flex;
  justify-content: center;
  min-height: 640px;
}

blockquote.tiktok-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.tiktok-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.tt-panel.is-embedded .tiktok-frame,
.tt-panel .tiktok-frame {
  overflow: auto;
}

.faq {
  padding: 1rem var(--pad) 5.5rem;
}

.faq-head { margin-bottom: 1.8rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.9rem;
}

.faq-grid article {
  padding: 1.25rem 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(58, 39, 28, 0.1);
  border-radius: 14px;
}

.faq-grid h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.45rem;
}

.faq-grid p { color: var(--muted); font-size: 0.95rem; }

.token {
  padding: 5.5rem var(--pad);
  background:
    linear-gradient(180deg, rgba(17, 12, 8, 0.03), transparent),
    var(--paper);
}

.token-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 1.2rem 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.token-intro h2 { margin-bottom: 0.55rem; }

.token-ca { min-width: 0; }

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem 0.85rem 1rem;
  background: var(--charcoal);
  border-radius: 999px;
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-weight: 700;
  word-break: break-all;
  color: var(--lime);
  font-size: 0.86rem;
}

.ca-address.is-tba {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.copy-toast {
  min-height: 1.3rem;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber);
  opacity: 0;
}

.copy-toast.show { opacity: 1; }

.token-stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nomics {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--charcoal);
  color: var(--fur);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(17, 12, 8, 0.16);
}

.nomics-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.nomics-head em {
  font-style: normal;
  color: #cbb48a;
}

.nomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  list-style: none;
}

.nomics-grid li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 226, 74, 0.16);
  border-radius: 14px;
}

.nomics-grid span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbb48a;
}

.nomics-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--amber-bright);
  margin: 0.22rem 0 0.12rem;
}

.nomics-grid small {
  color: #8f7a5e;
  font-size: 0.74rem;
}

.nomics-bar {
  margin-top: 1rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(197, 226, 74, 0.12);
  overflow: hidden;
}

.nomics-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6c675f, var(--amber), var(--lime), #f4f1ea);
}

.nomics-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #cbb48a;
  max-width: none;
}

.token-chart {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 640px;
  background: var(--charcoal);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 12, 8, 0.16);
}

.chart-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.05rem;
  border-bottom: 1px solid rgba(197, 226, 74, 0.14);
}

.chart-bar span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.chart-bar a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #cbb48a;
  text-decoration: none;
  white-space: nowrap;
}

.chart-bar a:hover { color: var(--amber-bright); }

.chart-wrapper {
  flex: 1;
  min-height: 580px;
  width: 100%;
  background: #100c08;
}

.chart-wrapper.is-tba {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.chart-tba {
  text-align: center;
  color: var(--fur);
  padding: 2rem;
}

.chart-tba img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.chart-tba span {
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.72rem;
}

.chart-tba strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.12em;
  color: var(--amber-bright);
}

.dexscreener-embed {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  display: block;
}

.buy {
  position: relative;
  min-height: 88vh;
  color: var(--fur);
  overflow: hidden;
}

.buy-poster { position: absolute; inset: 0; }

.buy-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.08);
}

.buy-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 12, 10, 0.9) 0%, rgba(14, 12, 10, 0.55) 55%, rgba(14, 12, 10, 0.18) 100%);
}

.buy-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 6rem var(--pad);
}

.buy .eyebrow { color: var(--lime); }
.buy h2 { color: var(--fur); }

.buy-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
  list-style: none;
}

.buy-steps li {
  padding: 1rem 1rem 1.1rem;
  background: rgba(17, 12, 8, 0.42);
  border: 1px solid rgba(197, 226, 74, 0.22);
  backdrop-filter: blur(10px);
}

.buy-steps b {
  font-family: var(--font-mono);
  color: var(--lime);
  font-size: 0.72rem;
}

.buy-steps h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0.25rem 0 0.35rem;
}

.buy-steps p { color: #cbb48a; font-size: 0.92rem; }

.buy .hero-actions { justify-content: flex-start; }

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem 1.4rem;
  align-items: center;
  padding: 1.8rem var(--pad) 2.2rem;
  background: var(--paper);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #6c675f, var(--amber), var(--lime), #f4f1ea) 1;
}

.footer p { color: var(--muted); font-size: 0.9rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: flex-end;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--leather);
}

.fineprint {
  grid-column: 1 / -1;
  max-width: 52em;
  font-size: 0.78rem !important;
}

.fineprint a { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-coin, .hero-banner { animation: none; }
  .paw-layer { display: none; }
}

@media (max-width: 1100px) {
  .looks-strip { grid-template-columns: repeat(3, 1fr); }
  .social-board,
  .faq-grid,
  .looks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 0.6rem var(--pad) 1rem;
    background: rgba(244, 239, 231, 0.96);
    box-shadow: 0 12px 30px rgba(17, 12, 8, 0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .story,
  .token-head,
  .buy-steps,
  .ig-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-stage { padding-top: 7.5rem; }
  .story-coin { right: 8%; bottom: -12%; }
  .buy-poster::after {
    background: linear-gradient(180deg, rgba(14, 12, 10, 0.35), rgba(14, 12, 10, 0.88));
  }

  .look-card.featured { transform: none; }
  .ig-grid iframe { height: 560px; }

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

  .token-chart,
  .chart-wrapper,
  .chart-wrapper.is-tba,
  .dexscreener-embed {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .looks-strip,
  .looks-grid,
  .faq-grid,
  .social-board { grid-template-columns: 1fr; }

  .nav-brand span { font-size: 0.92rem; }
  .nav-chip:nth-child(1),
  .nav-chip:nth-child(2) { display: none; }

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