/* ═══════════════════════════════════════════════
   CARROT PAWS — styles.css
   Refactored June 2026 — ~half the original size
   Breakpoints: 1200px / 1024px / 768px / 640px / 480px
   ═══════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; overflow-x: hidden; }

:root {
  --cream: #F5EDD8;
  --oat: #f0dfc8;
  --parchment: #D6C9A8;
  --taupe: #7A5F3A;
  --brown: #6B5540;
  --charcoal: #1a0f09;
  --orange: #E8801C;
  --orange-text: #E8801C;
  --orange-lt: #F5A84E;
  --green: #9A6B1F;
  --green-dk: #7A5018;
  --display: "Cormorant Garamond", Georgia, serif;
  --white: #F5EDD8;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.38s;
  --r: 16px;
  --sh: 0 4px 24px rgba(35, 26, 16, 0.10);
  --sh-lg: 0 16px 56px rgba(35, 26, 16, 0.16);
}

body {
  background: #1a0f09;
  color: #F5EDD8;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(232, 128, 28, 0.18); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-size: 0.8125rem; font-weight: 500; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--oat); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  .ds-track, .mq-track, .pay-track, .scroll-cue { animation: none; }
  .r { opacity: 1; transform: none; transition: none; }
  .cp-paw { animation: none; }
  body.homepage .daily-paw-press-top .ds-track,
  body.homepage .pay-track,
  body.homepage .scroll-cue { animation: none; }
  .cp-scene { opacity: 1; transform: none; }
  .cp-scene-image img { transform: none; }
  .cp-char-name, .cp-rule, .cp-char-line, .cp-pawprints { opacity: 1; transform: none; }
}

/* ── DELIVERY STRIP ── */
.delivery-strip {
  background: #1a0f09; padding: 0; overflow: hidden; white-space: nowrap;
  display: flex; align-items: stretch; position: relative;
}
.ds-track {
  display: inline-flex; align-items: stretch;
  width: max-content; animation: dsscroll 1200s linear infinite;
}
.ds-track:hover { animation-play-state: paused; }
.ds-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 28px; font-size: 0.625rem; font-weight: 400;
  letter-spacing: 0.06em; color: rgba(255, 247, 237, 0.7);
  border-right: 1px solid rgba(255,255,255,.07); min-height: 40px;
  white-space: nowrap;
}
@keyframes dsscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 100px;
  padding: 13px 14px 13px 30px;
  transition: background var(--t), box-shadow var(--t);
}
.hdr-logo { display: flex; align-items: center; flex: 0 0 auto; padding-left: 10px; }
.hdr-logo img { height: auto; width: auto; display: block; object-fit: contain; }
.hdr-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.hdr-nav a {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em;
  color: #F5EDD8; padding: 8px 18px; border-radius: 100px;
  transition: background var(--t), color var(--t);
}
.hdr-nav a:hover { background: rgba(255,255,255,0.18); color: var(--charcoal); }
.hdr-nav a.active { color: var(--charcoal); background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.16); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #F5EDD8; transition: transform 0.25s ease, opacity 0.2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── PREMIUM NAVBAR ── */
#hdr {
  position: fixed; top: 62px; left: 0; right: 0; z-index: 900;
  padding: 0 56px; transition: top var(--t) var(--ease);
}
#hdr.cp-premium-nav-wrap { padding: 0 34px; }
.cp-premium-nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100vw - 120px), 900px);
  margin: 0 auto; min-height: 70px;
  padding: 12px 22px; border-radius: 28px;
  background: rgba(20, 12, 6, 0.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245,237,216,0.15);
}
.cp-brand-logo { width: 42px; align-self: center; justify-self: start; }
.cp-brand-logo img { width: 100%; height: auto; object-fit: contain; }
.cp-premium-links {
  display: flex; align-items: center; flex: 1 1 auto;
  justify-content: center; gap: 28px;
  position: relative; top: 2px;
}
.cp-premium-links .cp-nav-link {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 28px; padding: 11px 14px; border-radius: 99px;
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.045em;
  color: #F5EDD8; background: transparent; border: none; white-space: nowrap;
  padding-top: 11px; padding-bottom: 11px;
}
.cp-premium-links .cp-nav-link:hover { background: rgba(255,245,228,0.08); color: #F5EDD8; }
.cp-premium-links .cp-nav-link.active,
.cp-premium-links .cp-nav-link[aria-current="page"] { color: #fffaf0; }
.cp-premium-links .cp-nav-link[href="faq.html"] { gap: 7px; }
.cp-premium-actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.cp-dog-button {
  width: 48px; height: 48px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: radial-gradient(circle at 42% 35%, #fff8e9, #efe0c7);
  border: 2px solid rgba(150,96,42,0.18); overflow: hidden;
  box-shadow: 0 7px 15px rgba(83,52,26,0.10), inset 0 2px 0 rgba(255,255,255,0.75);
}
.cp-dog-avatar { width: 78%; height: 78%; display: block; object-fit: cover; border-radius: 50%; filter: saturate(0.96) contrast(1.02); }
.cp-premium-nav .hdr-cta { display: none; }

/* Unscrolled: semi-transparent warm pill */
#hdr:not(.scrolled) .cp-premium-nav {
  background: rgba(255, 248, 240, 0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 140, 90, 0.2);
}
#hdr:not(.scrolled) .cp-nav-link { color: #2c1a0a; }
#hdr:not(.scrolled) .cp-nav-link:hover { background: rgba(44, 26, 10, 0.08); color: #2c1a0a; }
#hdr:not(.scrolled) .nav-paw-divider { filter: brightness(0) sepia(1) saturate(3) hue-rotate(340deg) brightness(0.2); opacity: 1; }

/* Scrolled */
#hdr.scrolled .cp-premium-nav { background: rgba(22, 13, 7, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(245, 237, 216, 0.18); }
#hdr.scrolled .cp-nav-link { color: #F5EDD8; }
#hdr.scrolled .nav-paw-divider { filter: none; opacity: 0.85; }

.nav-paw-divider { opacity: 0.85; pointer-events: none; user-select: none; display: inline-block; vertical-align: middle; position: relative; top: -1px; margin-left: 4px; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; flex-direction: column;
  justify-content: flex-end; padding-top: 90px; margin-bottom: 0; z-index: 1;
}
.hero-vid { position: absolute; inset: 0; z-index: 1; }
.hero-vid video { width: 100%; height: 100%; object-fit: cover; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: 0; }
.hero-video-pause {
  position: absolute; bottom: 20px; right: 20px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.hero-video-pause:hover { background: rgba(0,0,0,0.65); }
.hero-video-pause:focus-visible { outline: 2px solid #F5EDD8; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .hero-video-pause { display: none; } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(22, 13, 4, 0.25) 0%, rgba(22, 13, 4, 0.18) 50%, rgba(22, 13, 4, 0.02) 100%),
    linear-gradient(105deg, rgba(22, 13, 4, 0.30) 0%, transparent 50%);
}
.hero-body { position: relative; z-index: 4; padding: 0 80px 130px; max-width: 820px; }
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 400; line-height: 1.04; color: #F5EDD8;
  margin-bottom: 22px; letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.hero h1 em { font-style: italic; color: #f28c28; }
.hero-sub { font-size: 1.0625rem; font-weight: 300; line-height: 1.85; color: rgba(245, 237, 216, 0.92); max-width: 340px; margin-bottom: 52px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-pri {
  background: #f28c28; color: #F5EDD8; padding: 16px 42px;
  border-radius: 100px; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em;
  border: none; cursor: pointer;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all var(--t) var(--ease);
}
.btn-hero-pri:hover { background: #8B5E2A; color: #F5EDD8; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.btn-hero-sec {
  background: transparent; color: var(--white); padding: 14px 32px;
  border-radius: 100px; font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 255, 255, 0.38); cursor: pointer;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all var(--t) var(--ease);
}
.btn-hero-sec:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }

@keyframes bobdown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero→Intro */
.hero-wave-divider {
  display: block; width: 100%; line-height: 0; margin-top: -31px;
  position: relative; z-index: 3; background: transparent; overflow: hidden;
}
.hero-wave-divider svg { display: block; width: 100%; height: 80px; margin-top: -2px; }

/* ── MARQUEE ── */
.marquee { display: none; }
.mq-track { display: inline-flex; animation: mqscroll 144s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
@keyframes mqscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION UTILITIES ── */
.sec { padding: 72px 80px; }
.sec-lbl {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.26em;
  color: rgba(180, 120, 50, 0.8); margin-bottom: 10px;
}
.sec-h {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 400;
  line-height: 1.05; color: var(--charcoal); margin-bottom: 14px;
}
.sec-h em { font-style: italic; color: var(--orange-text); }
.sec-lbl--center { display: block; text-align: center; }
.sec-h--center { text-align: center; margin-bottom: 3rem; }
.sec-h--nudge { margin-top: 10px; }

/* ── WAVE & BOTANICAL DIVIDERS ── */
.cp-wave-divider { display: block; width: 100%; height: 48px; overflow: hidden; line-height: 0; margin-bottom: -2px; }
.cp-wave--ab { background: #f0dfc8; }
.cp-wave--ab svg, .cp-wave--ba svg { display: block; width: 100%; height: 48px; }
.cp-wave--ba { background: #e6ceaa; }
.cp-botanical-divider { width: 100%; height: 72px; pointer-events: none; overflow: hidden; line-height: 0; }
.cp-botanical-divider svg { width: 100%; height: 100%; display: block; }

/* ── INTRO ── */
.intro { background: #f0dfc8; padding: clamp(28px, 4vw, 56px) 80px clamp(28px, 3vw, 48px); }
.intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-copy .sec-lbl { display: block; }
.intro-copy h2 { margin-bottom: 18px; }
.intro-copy p { font-size: clamp(15px, 1.6vw, 17px); font-weight: 300; line-height: 1.8; color: rgba(44, 26, 10, 0.82); margin-bottom: 12px; }
.intro-copy p:last-of-type { margin-bottom: 26px; }
.intro-img { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: #f0dfc8; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }

/* Light section headings & subheadings */
.intro .sec-h, .products .sec-h, .cp-about .sec-h, .cp-social-section .sec-h, .hiw .sec-h { color: #2c1a0a; }
.intro h2, .intro h3, .products h2, .products h3, .hiw h2, .hiw h3, .hiw-step h3 { color: #2c1a0a; }
.intro .sec-lbl, .products .sec-lbl, .cp-about .sec-lbl, .cp-social-section .sec-lbl, .hiw .sec-lbl { color: #7a4e0a; }

/* ── BRAND CLARITY STRIP ── */
.brand-strip { background: #f0dfc8; padding: 18px 40px; border-bottom: 1px solid rgba(180, 140, 90, 0.18); }
.brand-strip-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.brand-strip-item { display: flex; align-items: center; gap: 7px; padding: 6px 24px; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em; color: #7a4e0a; text-transform: uppercase; white-space: nowrap; }
.brand-strip-item svg { flex-shrink: 0; opacity: 0.65; }
.brand-strip-divider { width: 1px; height: 18px; background: rgba(180, 140, 90, 0.3); flex-shrink: 0; }
@media (max-width: 680px) { .brand-strip-divider { display: none; } .brand-strip-item { padding: 5px 14px; } }

/* ── PRODUCTS ── */
.products { background: #f0dfc8; padding: clamp(40px, 5vw, 72px) 80px; position: relative; }
.prod-intro { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.prod-intro .sec-lbl { display: block; text-align: center; }
.prod-intro p { font-size: 0.9375rem; font-weight: 300; line-height: 1.8; color: rgba(44, 26, 10, 0.82); margin-top: 14px; }
.prod-intro p strong { font-weight: 600; color: #2c1a0a; }
.prod-intro .prod-delivery { display: inline-flex; align-items: flex-start; gap: 3px; margin-top: 6px; font-size: 0.9375rem; font-weight: 600; color: #2c1a0a; line-height: 1.8; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; transition: opacity .3s ease; }
.prod-card {
  background: #f0dfc8; border: 1.5px solid rgba(180, 140, 90, 0.15); border-radius: 20px;
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  display: flex; flex-direction: column; position: relative; align-self: stretch;
  box-shadow: 0 4px 18px rgba(35, 26, 16, 0.07), 0 1px 3px rgba(35,26,16,.04);
}
.prod-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); opacity: 0; transition: opacity 0.3s ease; z-index: 1; }
.prod-card:hover::before { opacity: 1; }
.prod-card:hover { box-shadow: 0 24px 48px rgba(35, 26, 16, 0.14), 0 4px 12px rgba(35,26,16,.06); border-color: rgba(242, 140, 40, 0.3); }
@media (hover: none) { .prod-card:active { border-color: rgba(242, 140, 40, 0.45); box-shadow: 0 8px 24px rgba(35, 26, 16, 0.12); } }
.prod-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--oat); }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.95s var(--ease); }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-badge { position: absolute; top: 14px; left: 14px; font-size: 0.625rem; font-weight: 500; letter-spacing: 0.1em; padding: 5px 13px; border-radius: 100px; }
.prod-card--soldout::before, .prod-card--soldout:hover::before { opacity: 0 !important; }
.prod-card--soldout:hover { transform: none; box-shadow: 0 4px 18px rgba(35, 26, 16, 0.07), 0 1px 3px rgba(35,26,16,.04); border-color: rgba(180, 140, 90, 0.15); cursor: default; }
.badge-avail { background: #e8801c; color: #fff; }
.badge-soldout { background: var(--parchment); color: var(--taupe); }
.prod-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; background: #f0dfc8; }
.prod-variant { font-size: 0.5938rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange-text); margin-bottom: 5px; }
.prod-title { font-family: "Bree Serif", Georgia, serif; font-size: 1.0625rem; font-weight: 400; color: #2c1a0a; line-height: 1.25; margin-bottom: 6px; letter-spacing: .01em; }
.prod-desc { font-size: 0.7812rem; font-weight: 300; color: var(--taupe); line-height: 1.6; margin-bottom: 16px; }
.prod-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; justify-content: center; }
.prod-price { font-size: 1.375rem; font-weight: 700; color: #2c1a0a; letter-spacing: -.01em; }
.btn-order {
  display: block; width: 100%; padding: 13px; border-radius: 100px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.08em;
  text-align: center; border: none; cursor: pointer;
  transition: all var(--t) var(--ease); margin-top: auto;
}
.btn-order-active { background: var(--orange); color: #2c1a0a; }
.btn-order-active:hover { background: var(--green-dk); color: #F5EDD8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74, 122, 46, 0.3); }
.btn-order-soon { background: var(--parchment); color: var(--taupe); cursor: default; pointer-events: none; }

/* ── HOW IT WORKS ── */
.hiw { background: #f0dfc8; padding: clamp(20px, 3vw, 40px) 80px clamp(48px, 6vw, 82px); }
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.hiw .sec-h { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 48px; }
.hiw-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 2rem; }
.hiw-step-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; }
.hiw-num { width: 40px; height: 40px; border-radius: 50%; background: #e8801c; color: #fff; font-size: 0.9375rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; flex-shrink: 0; border: none; }
.hiw-step h3 { font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-size: 1.375rem; font-weight: 500; color: #2c1a0a; margin-bottom: 0.6rem; }
.hiw-step p, .hiw p { font-size: clamp(14px, 1.4vw, 15px); line-height: 1.8; margin-bottom: 16px; color: rgba(44, 26, 10, 0.72); }

/* ── ABOUT ── */
.cp-about { background: var(--oat); padding: clamp(56px, 7vw, 96px) 80px; position: relative; overflow: hidden; }
.cp-about-two-col { display: flex; align-items: center; gap: clamp(40px, 6vw, 80px); max-width: 1100px; margin: 0 auto; }
.cp-about-photo { flex: 0 0 clamp(260px, 35%, 400px); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cp-about-img { width: 100%; height: auto; border-radius: 24px; object-fit: cover; aspect-ratio: 1/1; box-shadow: 0 8px 32px rgba(44, 26, 10, 0.14); }
.cp-about-photo-caption { font-size: 0.8125rem; color: rgba(44, 26, 10, 0.85); font-style: italic; letter-spacing: 0.04em; }
.cp-about-quote { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(18px, 2vw, 22px); font-style: italic; color: var(--orange); border-left: 3px solid var(--orange); padding-left: 16px; margin: 20px 0; line-height: 1.5; }
.cp-about-inner { flex: 1; text-align: left; }
.cp-about-inner .sec-lbl { display: block; margin-bottom: 14px; }
.cp-about-inner .sec-h { margin-bottom: 28px; }
.cp-about p, .cp-about-inner p { color: rgba(44, 26, 10, 0.82); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.8; margin-bottom: 16px; }
.cp-about-inner p:last-child { margin-bottom: 0; }

/* ── UNIVERSE BRIDGE ── */
.universe-bridge {
  color: #F5EDD8; background: #1a0f09;
  padding: clamp(52px, 7vw, 82px) 80px clamp(48px, 6.5vw, 76px);
  text-align: center; position: relative; overflow: hidden;
}
.universe-bridge::before { content: none; }
.universe-bridge-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.universe-kicker { display: inline-block; font-size: 0.8125rem; letter-spacing: 0.22em; color: rgba(245,237,216,0.7); margin-bottom: 16px; font-weight: 700; }
.universe-title { font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.05; font-weight: 400; letter-spacing: -0.02em; color: #2c1a0a; max-width: 680px; margin: 0 auto 20px; }
.universe-copy { max-width: 620px; margin: 0 auto 26px; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.85; color: rgba(44, 26, 10, 0.65); }
.cp-three-pillars { display: flex; align-items: flex-start; gap: 0; max-width: 860px; margin: 0 auto; }
.cp-pillar { flex: 1; padding: 0 32px; text-align: center; }
.cp-pillar-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(44, 26, 10, 0.07); color: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.cp-pillar-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.25rem; font-weight: 600; color: #2c1a0a; margin-bottom: 8px; }
.cp-pillar-copy { font-size: 0.875rem; color: rgba(44, 26, 10, 0.65); line-height: 1.75; }
.cp-pillar-divider { width: 1px; background: rgba(44, 26, 10, 0.1); align-self: stretch; flex-shrink: 0; margin: 8px 0; }

/* ── FEATURE TAGS ── */

/* ── CLUB / STORIES ── */
.club-section { background: #f0dfc8; color: #2c1a0a; padding: clamp(52px, 7.5vw, 104px) 80px; position: relative; overflow: hidden; }
.club-section::before, .club-section::after { display: none; content: none; }

/* ── STORIES BANNER ── */
.stories-banner { display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden; max-width: 1100px; margin: 0 auto; box-shadow: 0 12px 48px rgba(79,48,23,0.13); }
.stories-banner-img { position: relative; min-height: 440px; }
.stories-banner-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.stories-banner-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px) clamp(36px, 5vw, 72px); background: #2c1a0a; }
.stories-banner-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: #F5EDD8; line-height: 1.15; margin: 12px 0 20px; }
.stories-banner-heading em { font-style: italic; color: var(--orange-text); }
.stories-banner-copy { color: rgba(245, 237, 216, 0.75); font-size: clamp(0.88rem, 1.2vw, 1rem); line-height: 1.7; margin-bottom: 32px; max-width: 420px; }
.stories-banner-btn { display: inline-block; padding: 12px 28px; background: transparent; border: 1px solid rgba(245, 237, 216, 0.4); border-radius: 999px; color: #F5EDD8; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; transition: background 0.25s ease, border-color 0.25s ease; align-self: center; }
.stories-banner-btn:hover { background: rgba(245, 237, 216, 0.1); border-color: rgba(245, 237, 216, 0.7); }
.stories-banner .sec-lbl { color: rgba(245, 237, 216, 0.55); }

/* ── MIDNIGHT PAWS ── */
.midnight-section { background: #1a0f09; padding: 66px 80px; overflow: hidden; }
.midnight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto; padding: clamp(36px, 5vw, 64px) clamp(32px, 5vw, 72px); border: 1px solid rgba(214, 166, 65, 0.3); border-radius: 24px; background: #120b05; box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35); box-sizing: border-box; align-items: center; }
.midnight-img-wrap { width: 100%; }
.midnight-text { padding: clamp(18px, 3.2vw, 42px) clamp(18px, 4vw, 54px); box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; }
.midnight-lbl { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; color: rgba(245, 237, 216, 0.55); display: block; margin-bottom: 10px; }
.midnight-h { font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-size: clamp(36px, 5vw, 56px); font-weight: 500; color: #F5EDD8; line-height: 1.1; margin-bottom: 16px; }
.midnight-h em { color: var(--orange-text); font-style: italic; }
.midnight-p { font-size: 0.9375rem; font-weight: 300; line-height: 1.85; color: rgba(245, 237, 216, 0.65); margin-bottom: 24px; max-width: 540px; }
.btn-midnight { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #ffd97d; color: #1a0e00; padding: 14px 32px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; text-align: center; width: 100%; transition: all 0.3s ease; }
.btn-midnight:hover { background: #ffec9e; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 217, 125, 0.3); }
#midnight-paws-club { scroll-margin-top: 140px; }

/* ── STAY CONNECTED ── */
.cp-social-section { background: #f0dfc8; padding: clamp(48px, 6vw, 72px) 80px; }
.cp-social-intro { max-width: 560px; margin: 0 auto 40px; text-align: center; }
.cp-social-sub { font-size: clamp(14px, 1.4vw, 16px); color: rgba(44, 26, 10, 0.65); line-height: 1.75; margin-top: 12px; }
.cp-social-section .sec-h { font-size: clamp(32px, 4vw, 52px); margin-bottom: 0; color: #2c1a0a; }
.cp-social-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 1.8rem); max-width: 1120px; margin: 0 auto; padding: clamp(24px, 3vw, 36px) clamp(16px, 3vw, 40px); }
.cp-social-card {
  min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: clamp(1.1rem, 1.8vw, 1.5rem) clamp(1rem, 1.6vw, 1.4rem); padding-top: 1.4rem;
  border-radius: 18px; text-decoration: none;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(245, 237, 216, 0.1);
  box-shadow: 0 18px 48px rgba(79, 48, 23, 0.055); color: #F5EDD8;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.cp-social-card:hover, .cp-social-card:focus-visible {
  transform: translateY(-5px); background: rgba(255, 250, 242, 0.98);
  border-color: rgba(220, 130, 25, 0.22); box-shadow: 0 26px 62px rgba(104, 68, 31, 0.11);
}
.cp-social-card:hover h3, .cp-social-card:focus-visible h3 { color: #2a1a0a; }
.cp-social-card:hover p, .cp-social-card:focus-visible p { color: rgba(42, 26, 10, 0.7); }
.cp-social-icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.65rem; border-radius: 14px; background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 12px 28px rgba(105, 66, 28, 0.07); }
.cp-social-icon svg { width: 26px; height: 26px; fill: none; stroke: #dc7f16; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cp-social-card:hover .cp-social-icon svg, .cp-social-card:focus-visible .cp-social-icon svg { stroke: #b56510; }
.cp-social-card h3 { margin: 0 0 0.75rem; color: #2c1a0a; font-family: var(--display); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.1; letter-spacing: -0.01em; }
.cp-social-card p { max-width: 100%; margin: 0 auto; color: rgba(44, 26, 10, 0.65); font-size: clamp(0.8rem, 1.1vw, 0.88rem); line-height: 1.45; text-wrap: balance; display: block; text-align: center; }

/* ── COMMUNITY ── */
.cp-community-section { background: #1a0f09; padding: 80px 24px; }
.cp-community-section .sec-h { color: #F5EDD8; }
.cp-community-section .sec-h em { color: var(--orange); }
.cp-community-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cp-community-copy { display: flex; flex-direction: column; gap: 0; align-items: flex-start; text-align: left; }
.cp-community-sub { font-size: 1rem; line-height: 1.7; color: rgba(245,237,216,0.65); margin: 16px 0 28px; max-width: 460px; }
.cp-community-btn { display: inline-block; width: fit-content; text-decoration: none; font-size: 0.9375rem; }
.cp-community-note { margin-top: 12px; font-size: 0.8125rem; color: rgba(44, 26, 10, 0.45); font-style: italic; }
.cp-community-note--bold { font-weight: 700; font-style: italic; color: rgba(44, 26, 10, 0.6); }
.cp-community-email-inline { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; font-style: italic; font-size: 0.8125rem; }
.cp-community-card { background: var(--white); border-radius: var(--r); border: 1.5px dashed var(--parchment); min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--sh); overflow: hidden; width: 100%; }

/* ── NEWSLETTER + POLL ── */
.cp-engage-section { padding: clamp(48px, 6vw, 80px) 24px; background: #f0dfc8; }
.cp-engage-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.cp-newsletter-card, .cp-poll-card { background: #e6ceaa; border: none; border-radius: 28px; padding: clamp(28px,4vw,44px); display: flex; flex-direction: column; }
.cp-newsletter-card .sec-h, .cp-poll-card .sec-h { font-size: clamp(22px, 2.8vw, 34px); color: #2c1a0a; margin-bottom: 12px; line-height: 1.1; }
.cp-newsletter-card .sec-h em, .cp-poll-card .sec-h em { color: var(--orange); }
.cp-poll-card .sec-h { margin-bottom: 16px; }
.cp-newsletter-sub { color: rgba(44, 26, 10, 0.7); line-height: 1.7; margin: 12px 0 28px; }
.cp-newsletter-form { width: 100%; }
.cp-newsletter-field { display: flex; gap: 10px; flex-wrap: wrap; }
.cp-newsletter-field input[type="email"] { flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px; border: 1.5px solid rgba(180, 130, 80, 0.35); background: #f0dfc8; color: #2c1a0a; font-size: 0.9375rem; font-family: inherit; outline: 2px solid transparent; outline-offset: 2px; transition: border-color 0.2s, outline-color 0.2s; }
.cp-newsletter-field input[type="email"]::placeholder { color: rgba(44, 26, 10, 0.4); }
.cp-newsletter-field input[type="email"]:focus { border-color: var(--orange); outline-color: var(--orange); }
.cp-newsletter-field button { padding: 14px 24px; border-radius: 999px; border: 0; background: var(--orange); color: #2c1a0a; font-weight: 700; font-size: 0.9375rem; font-family: inherit; cursor: pointer; white-space: nowrap; transition: background 0.2s, transform 0.1s; }
.cp-newsletter-field button:hover { background: #c96d10; }
.cp-newsletter-field button:active { transform: scale(0.97); }
.cp-newsletter-legal { margin-top: 12px; font-size: 0.8125rem; color: rgba(44, 26, 10, 0.5); }
.cp-poll-options { display: flex; flex-direction: column; gap: 10px; }
.cp-poll-btn { width: 100%; padding: 14px 20px; border-radius: 14px; border: 1.5px solid rgba(180, 130, 80, 0.35); background: #f0dfc8; color: #2c1a0a; font-size: 0.9375rem; font-weight: 500; font-family: inherit; cursor: pointer; text-align: left; transition: background 0.18s, border-color 0.18s, transform 0.1s; }
.cp-poll-btn:hover { background: #e6ceaa; border-color: var(--orange); }
.cp-poll-btn:active { transform: scale(0.98); }
.cp-poll-btn:disabled { cursor: default; }
.cp-poll-btn:disabled:not(.cp-poll-btn--voted):hover { background: #f0dfc8; border-color: rgba(180, 130, 80, 0.3); transform: none; }
.cp-poll-btn--voted { background: #2c1a0a; color: #F5EDD8; border-color: #2c1a0a; cursor: default; }
.cp-poll-btn--voted:hover { background: #2c1a0a; border-color: #2c1a0a; transform: none; }
.cp-poll-btn--locked { opacity: 0.45; cursor: default; }
.cp-poll-thanks { font-size: 0.875rem; color: #2c1a0a; margin-top: 16px; margin-bottom: 12px; }
.cp-poll-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cp-poll-bar-label { font-size: 0.875rem; color: #2c1a0a; font-weight: 600; width: 80px; flex-shrink: 0; }
.cp-poll-bar-track { flex: 1; height: 10px; background: rgba(44, 26, 10, 0.1); border-radius: 999px; overflow: hidden; }
.cp-poll-bar-fill { height: 100%; background: var(--orange); border-radius: 999px; transition: width 0.6s cubic-bezier(.22,.75,.2,1); }
.cp-poll-bar-pct { font-size: 0.8125rem; color: rgba(44, 26, 10, 0.65); width: 36px; text-align: right; flex-shrink: 0; }

.products .prod-intro .sec-lbl {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--orange);
}

/* ── CONTACT ── */
.contact { background: #1a0f09; padding: clamp(40px, 5.5vw, 68px) 80px; }
.contact-simple { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-simple .sec-lbl { display: block; margin-bottom: 9px; }
.contact-simple h2 { margin-bottom: 14px; }
.contact-simple-sub { font-size: 0.9375rem; font-weight: 300; line-height: 1.85; color: #F5EDD8; }
.contact-email-big { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 1.0625rem; font-weight: 500; color: var(--orange); border-bottom: 1.5px solid transparent; transition: border-color var(--t); text-decoration: none; }
.contact-email-big:hover { border-color: var(--orange); }
.contact-socials { display: flex; justify-content: center; gap: 20px; margin-top: 24px; }
.contact-socials a { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(0, 0, 0, 0.12); background: #e6ceaa; display: flex; align-items: center; justify-content: center; color: #4b2e1f; text-decoration: none; transition: all var(--t); }
.contact-socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ── PAYMENT STRIP ── */
.payment-strip { background: #1a0f09; padding: 24px 0; overflow: hidden; border-top: 2px solid rgba(200,133,58,0.5); border-bottom: 2px solid rgba(200,133,58,0.5); }
.pay-track { display: inline-flex; align-items: center; animation: payroll 22s linear infinite; }
.pay-track:hover { animation-play-state: paused; }
.pay-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 36px; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; color: rgba(245, 237, 216, 0.7); white-space: nowrap; }
.pay-item svg { flex-shrink: 0; opacity: 0.75; }
.pay-divider { width: 2px; height: 20px; background: rgba(200,133,58,0.35); flex-shrink: 0; }
.klarna-wordmark { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; border-radius: 6px; background: rgba(245, 237, 216, 0.15); color: rgba(245, 237, 216, 0.8); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.01em; line-height: 1; }
@keyframes payroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FOOTER ── */
.cp-footer { background: #1a0f09; padding: 42px 24px 32px; }
.cp-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cp-footer-logo { width: 60px; height: 57px; margin-bottom: 20px; }
.cp-footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.cp-footer-links a { color: rgba(245, 237, 216, 0.68); font-size: 0.875rem; font-weight: 400; transition: opacity 0.25s ease; }
.cp-footer-links a:hover { opacity: 0.7; }
.cp-footer-socials { display: flex; gap: 16px; margin-bottom: 20px; }
.cp-footer-socials a { width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); color: rgba(245, 237, 216, 0.7); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.cp-footer-socials a:hover { background: var(--orange); transform: translateY(-2px); }
.cp-footer-trust { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; color: rgba(245, 237, 216, 0.7); font-size: 0.8125rem; letter-spacing: 0.03em; }
.cp-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.cp-footer-legal a { color: rgba(245, 237, 216, 0.4); font-size: 0.8125rem; font-weight: 400; transition: opacity 0.2s ease; }
.cp-footer-legal a:hover { opacity: 0.6; }
.cp-footer-copy { color: rgba(245, 237, 216, 0.45); font-size: 0.8125rem; }

/* ── TRUSTPILOT ── */
.cp-trustpilot-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; color: var(--taupe); font-size: 0.875rem; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(126, 103, 79, 0.25); padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.cp-trustpilot-link:hover { color: #00b67a; border-color: #00b67a; }
.cp-trustpilot-link svg { color: #00b67a; flex-shrink: 0; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 1200; display: flex; gap: 18px; align-items: center; justify-content: space-between; max-width: 980px; margin: 0 auto; padding: 16px 18px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 18px; background: rgba(53, 38, 24, 0.96); color: var(--cream); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28); backdrop-filter: blur(10px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; font-family: "Bree Serif", "Cooper Black", Georgia, serif; font-size: 1rem; margin-bottom: 4px; }
.cookie-banner p { margin: 0; font-size: 0.8125rem; line-height: 1.55; color: rgba(245, 237, 216, 0.8); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-actions a { font-size: 0.8125rem; color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions button { border: 0; border-radius: 999px; background: var(--orange); color: var(--charcoal); font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; padding: 10px 16px; cursor: pointer; }

/* ── LEGAL ── */

/* ── SCROLL REVEAL ── */
.r { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.r.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.22s; }
.d4 { transition-delay: 0.30s; }

/* ── DAILY PAW PRESS TICKER ── */
.daily-paw-press-top { background: #1a0f09; min-height: 42px; display: flex; align-items: stretch; position: relative; z-index: 800; overflow: hidden; }
.daily-paw-press-top::after { display: none; }
.ds-news-label { display: flex; align-items: center; gap: 10px; padding: 0 14px; background: #1a0f09; border-right: 1px solid rgba(255,255,255,.1); flex-shrink: 0; z-index: 2; }
.ds-news-pill { background: #f28c28; color: #F5EDD8; font-size: 0.625rem; font-weight: 700; letter-spacing: .14em; padding: 3px 8px; border-radius: 4px; white-space: nowrap; border: none; font-family: inherit; cursor: pointer; transition: background 0.15s ease; }
.ds-news-pill:hover { background: #d97b1e; }
.ds-date-label { display: none; }
.ds-track-wrap { flex: 1; overflow: hidden; display: flex; align-items: center; position: relative; }
.daily-paw-press-top .ds-paw-sep { display: inline-flex; align-items: center; padding: 0 16px; opacity: 0.85; flex-shrink: 0; }
.ds-track-wrap::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to right, #1a0f09 0%, transparent 100%); pointer-events: none; z-index: 3; }
.daily-paw-press-top .ds-track { animation: dsscroll 1200s linear infinite; display: flex; width: max-content; }
.daily-paw-press-top .readmore-btn { margin-left: 14px; color: #f28c28; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; white-space: nowrap; }
.daily-paw-press-top .pawpress-label { color: #f28c28; font-weight: 900; margin-right: 8px; }

/* Ticker text transform */
.delivery-strip .ds-item, .delivery-strip .ds-item span,
.delivery-strip .mq-item, .delivery-strip .mq-item span,
.daily-paw-press-top .ds-item, .daily-paw-press-top .ds-item span,
.ds-news-pill, .ds-date-capsule, .ds-date-label, .pawpress-label, .readmore-btn { text-transform: none; }
.delivery-strip .ds-item, .daily-paw-press-top .ds-item { letter-spacing: 0.01em; }
.ds-news-pill, .ds-date-capsule { letter-spacing: 0.06em; }

/* Ticker font smoothing */
.ds-track, .ds-item, .daily-sniff .ds-track, .daily-sniff .ds-item { font-size: 0.8125rem; letter-spacing: 0.01em; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Ticker pause */
.delivery-strip:hover .ds-track, .delivery-strip:focus-within .ds-track, .delivery-strip.is-paused .ds-track,
.daily-paw-press-top:hover .ds-track, .daily-paw-press-top:focus-within .ds-track, .daily-paw-press-top.is-paused .ds-track,
.daily-sniff:hover .ds-track, .daily-sniff:focus-within .ds-track, .daily-sniff.is-paused .ds-track,
.ds-track:hover, .ds-track:active, .ds-track.is-paused { animation-play-state: paused !important; }

/* Ticker border kill */
.delivery-strip, .daily-paw-press-top, .ds-news-label, .ds-track-wrap, .ds-track, .ds-item { border: none !important; box-shadow: none !important; outline: none !important; }

/* Ticker dot */
.delivery-strip .mq-dot { color: #f28c28; opacity: 1; font-size: 0.8125rem; padding: 0 12px; }
.delivery-strip .mq-date-pill { display: inline-flex; align-items: center; background: rgba(255,247,237,0.07); border: 1px solid rgba(242,140,40,0.36); border-radius: 6px; color: rgba(255,247,237,0.86); padding: 2px 8px; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.08em; white-space: nowrap; }

/* ── PAWPRESS POPUP ── */
.pawpress-popup { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: none; align-items: center; justify-content: center; z-index: 99999; padding: 20px; }
.pawpress-card { background: #f7efe2; max-width: 520px; width: 100%; border-radius: 28px; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.25); font-family: "Cormorant Garamond", Georgia, serif; color: #4b2e1f; position: relative; }
.pawpress-close { position: absolute; top: 14px; right: 18px; font-size: 1.75rem; cursor: pointer; background: none; border: none; color: #4b2e1f; padding: 4px 8px; line-height: 1; border-radius: 4px; }
.pawpress-date { font-family: "DM Sans", system-ui, sans-serif; font-size: 0.8125rem; letter-spacing: 2px; opacity: .72; margin-bottom: 10px; text-transform: uppercase; }
.pawpress-title { font-size: 1.75rem; line-height: 1.2; margin-bottom: 18px; font-weight: 700; }
.pawpress-story { font-size: 1.0625rem; line-height: 1.7; }

/* ── LOGO ── */
.cp-logo-img, .cp-brand-logo img, .hdr-logo img { width: 42px; height: 42px; max-width: none; display: block; object-fit: contain; filter: none; }

/* ── CHARACTERS ── */
.cp-characters { background: #1a0f09; width: 100%; margin-top: 0; position: relative; z-index: 2; }
.cp-characters::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to bottom, #1a0f09 0%, rgba(13,10,8,0.85) 35%, rgba(13,10,8,0.4) 65%, transparent 100%); z-index: 10; pointer-events: none; }
.cp-scene { position: relative; width: 100%; display: grid; align-items: center; opacity: 0; transform: translateY(28px); transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.cp-scene.cp-visible { opacity: 1; transform: translateY(0); }
#cp-archie { grid-template-columns: 65% 1fr; min-height: 100vh; }
#cp-teddy  { grid-template-columns: 1fr 52%; min-height: 85vh; }
#cp-pearl  { grid-template-columns: 54% 1fr; min-height: 96vh; }
#cp-mabel  { grid-template-columns: 1fr 50%; min-height: 88vh; }
.cp-scene-image { position: relative; overflow: hidden; height: 100%; min-height: inherit; }
.cp-scene-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 16s ease-out; display: block; }
.cp-scene.cp-visible .cp-scene-image img { transform: scale(1); }

#cp-archie .cp-scene-image img { object-position: center 30%; }
#cp-archie .cp-scene-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(13,10,8,0.45) 82%, #1a0f09 100%); }
#cp-archie .cp-scene-image::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, transparent 0%, transparent 62%, rgba(13,10,8,0.55) 85%, rgba(13,10,8,0.80) 100%); }
#cp-teddy .cp-scene-image img { object-position: center 20%; filter: brightness(0.95); }
#cp-teddy .cp-scene-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(13,10,8,0.45) 82%, #1a0f09 100%); }
#cp-teddy .cp-scene-image::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to left, transparent 0%, transparent 62%, rgba(13,10,8,0.55) 85%, rgba(13,10,8,0.80) 100%); }
#cp-pearl .cp-scene-image img { object-position: center 35%; min-height: 93vh; }
#cp-pearl .cp-scene-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, transparent 68%, rgba(14,11,9,0.4) 84%, #0e0b09 100%); }
#cp-pearl .cp-scene-image::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, transparent 0%, transparent 60%, rgba(14,11,9,0.5) 82%, rgba(14,11,9,0.78) 100%); }
#cp-mabel .cp-scene-image img { object-position: center 25%; filter: brightness(0.9); }
#cp-mabel .cp-scene-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(8,6,4,0.5) 82%, #080604 100%); }
#cp-mabel .cp-scene-image::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to left, transparent 0%, transparent 58%, rgba(8,6,4,0.55) 82%, rgba(8,6,4,0.82) 100%); }

.cp-scene-text { padding: 0 6vw; display: flex; flex-direction: column; gap: 1.1rem; position: relative; z-index: 2; }
#cp-teddy .cp-scene-text, #cp-mabel .cp-scene-text { padding: 0 5vw 0 9vw; }
.cp-scene-num { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 0.6rem; letter-spacing: 0.32em; color: rgba(245,237,216,0.75); }
.cp-char-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3.2rem, 6vw, 7rem); letter-spacing: 0.07em; line-height: 0.9; color: #e8d9c4; opacity: 0; transform: translateY(16px); transition: opacity 1.8s 0.4s cubic-bezier(0.16,1,0.3,1), transform 1.8s 0.4s cubic-bezier(0.16,1,0.3,1); }
.cp-scene.cp-visible .cp-char-name { opacity: 1; transform: translateY(0); }
.cp-rule { border: none; border-top: 1px solid rgba(200,132,58,0.22); width: 2.5rem; margin: 0; opacity: 0; transition: opacity 1.8s 0.6s ease; }
.cp-scene.cp-visible .cp-rule { opacity: 1; }
.cp-char-line { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: clamp(0.65rem, 1vw, 0.85rem); letter-spacing: 0.24em; color: #9a8575; opacity: 0; transform: translateY(10px); transition: opacity 1.8s 0.75s cubic-bezier(0.16,1,0.3,1), transform 1.8s 0.75s cubic-bezier(0.16,1,0.3,1); }
.cp-scene.cp-visible .cp-char-line { opacity: 1; transform: translateY(0); }
.cp-pawprints { display: flex; gap: 0.5rem; align-items: center; opacity: 0; transition: opacity 1.8s 0.9s ease; }
.cp-scene.cp-visible .cp-pawprints { opacity: 1; }
.cp-paw { width: 18px; height: 18px; opacity: 0.3; animation: cpPawDrift 3s ease-in-out infinite; }
.cp-paw:nth-child(2) { animation-delay: 0.4s; opacity: 0.2; }
.cp-paw:nth-child(3) { animation-delay: 0.8s; opacity: 0.12; }
@keyframes cpPawDrift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
.cp-scene.cp-visible .cp-cta-wrap { opacity: 1; transform: translateY(0); }

/* ── MISC ── */
.universe-bridge, .cp-community-section, .cp-characters { position: relative; }
.delivery-strip, .marquee, .intro, .hiw, .products, .club-section, .midnight-section, .contact, .payment-strip, footer { position: relative; }

.prod-buy-section { margin-top: auto; }
.prod-coming-soon { text-align: center; font-size: 0.8125rem; color: var(--taupe); letter-spacing: 0.04em; margin-top: 28px; font-style: italic; }
.prod-trust { text-align: center; font-size: 0.6875rem; color: var(--taupe); letter-spacing: 0.04em; margin-top: 8px; }
.prod-trust-bar { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; padding: 10px 0 12px; border-top: 1px solid rgba(180, 140, 90, 0.2); border-bottom: 1px solid rgba(180, 140, 90, 0.2); }
.prod-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 500; color: var(--taupe); letter-spacing: 0.02em; line-height: 1.4; }
.prod-trust-item svg { flex-shrink: 0; color: #7a4e0a; opacity: 0.75; }
/* ── COMMUNITY PUP ── */
.cp-community-pup-img { width: 100%; height: auto; object-fit: cover; border-radius: var(--r) var(--r) 0 0; display: block; }
.cp-community-pup-info { width: 100%; padding: 0.6rem 1rem 1rem; }
.cp-community-pup-caption { text-align: center; font-size: 1rem; color: rgba(44,26,10,0.85); font-style: normal; font-weight: 700; padding: 0 0 0.6rem; margin: 0; letter-spacing: 0.01em; }
.cp-pup-submitted { display: block; font-size: 0.75rem; font-weight: 400; color: rgba(44,26,10,0.5); font-style: italic; margin-top: 2px; }
.cp-pup-tags { display: flex; flex-direction: column; gap: 5px; }
.cp-pup-tag { font-size: 0.75rem; color: rgba(44,26,10,0.7); line-height: 1.4; }
.cp-pup-tag-label { font-weight: 700; color: var(--orange); font-style: normal; margin-right: 4px; font-size: 0.6875rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── PRINT ── */
@media print {
  .delivery-strip, .marquee, .payment-strip, .hamburger, #hdr, .hero-vid, .hero-art, .hero-overlay, .scroll-cue { display: none; }
  .hero { height: auto; min-height: 0; background: var(--cream); }
  .hero-body { color: var(--charcoal); padding: 20px; }
  body { background: #f0dfc8; color: black; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1180px) {
  #hdr.cp-premium-nav-wrap { padding: 0 22px; }
  .cp-premium-nav { width: min(calc(100vw - 46px), 2180px); gap: 18px; padding-left: 24px; }
  .cp-brand-logo { width: 42px; }
  .cp-premium-links { gap: 10px; }
  .cp-premium-links .cp-nav-link { font-size: 0.875rem; padding: 9px 11px; }
}

@media (max-width: 1024px) {
  #hdr { padding: 0 28px; }
  .hero-body { padding: 0 48px 72px; }
  .intro { padding: clamp(32px, 5vw, 54px) 48px clamp(38px, 5.5vw, 62px); }
  .intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .products { padding: clamp(32px, 5vw, 54px) 48px clamp(38px, 5.5vw, 62px); }
  .club-section { padding: clamp(44px, 7vw, 74px) 48px; }
  .midnight-section { padding: 52px 48px; }
  .midnight-inner { grid-template-columns: 1fr; gap: 36px; }
  .universe-bridge { padding: clamp(44px, 6vw, 64px) 48px clamp(42px, 6vw, 62px); }
  .contact { padding: clamp(38px, 5vw, 56px) 48px; }
  .hiw { padding: clamp(32px, 5vw, 54px) 48px clamp(38px, 5.5vw, 62px); }
  .prod-intro { margin-bottom: 44px; }
}

@media (max-width: 940px) {
  #hdr.cp-premium-nav-wrap { padding: 0 14px; top: 16px; }
  .cp-premium-nav { width: min(calc(100vw - 28px), 2180px); min-height: 68px; padding: 8px 13px 8px 18px; border-radius: 27px; }
  .cp-premium-links {
    position: absolute; top: calc(100% + 12px); left: 18px; right: 18px;
    display: none; flex-direction: column; align-items: stretch; padding: 12px;
    border-radius: 22px; background: rgba(240, 223, 200, 0.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(180, 140, 90, 0.22);
    box-shadow: 0 16px 40px rgba(35, 26, 16, 0.14);
  }
  .hdr-nav.is-open, .cp-premium-links.is-open { display: flex; }
  .cp-premium-links.is-open .cp-nav-link { color: #2c1a0a; }
  .cp-premium-links.is-open .cp-nav-link:hover { background: rgba(44, 26, 10, 0.07); color: #2c1a0a; }
  .cp-premium-links .cp-nav-link { justify-content: center; min-height: 46px; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 900px) {
  .cp-social-grid { margin-bottom: 10px; }
  .cp-social-card h3 { display: block; text-align: center; }
}

@media (max-width: 768px) {
  #hdr { top: 62px; padding: 0 16px; }
  .hdr-inner { position: relative; border-radius: 16px; padding: 12px 14px 12px 22px; }
  .hdr-nav {
    display: none; flex-direction: column;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(246, 238, 225, 0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(155, 136, 112, 0.18); border-radius: 16px;
    padding: 12px; gap: 4px; box-shadow: 0 16px 40px rgba(35, 26, 16, 0.14); z-index: 999;
  }
  .hdr-nav.nav-open { display: flex; }
  .hdr-nav a { border-radius: 12px; padding: 10px 16px; }
  .hamburger { display: flex; }

  .hero-body { padding: 0 26px 80px; }
  .hero h1 { font-size: clamp(42px, 5.5vw, 76px); }
  .hero-sub { max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-art { object-position: center center; }

  .intro { padding: 38px 28px; }
  .intro-inner { grid-template-columns: 1fr; gap: 34px; }
  .products { padding: 38px 28px; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-intro { margin-bottom: 34px; }
  .hiw { padding: 38px 28px; }
  .hiw-steps { flex-direction: column; align-items: center; gap: 0; }
  .hiw-step { padding: 0 1rem 2rem; max-width: 340px; }
  .universe-bridge { padding: 38px 28px; }
  .universe-title { font-size: clamp(28px, 8vw, 44px); }
  .universe-kicker { margin-bottom: 12px; }
  .universe-copy { font-size: 1rem; margin-bottom: 22px; }
  .cp-three-pillars { flex-direction: column; align-items: center; gap: 32px; }
  .cp-pillar { padding: 0; width: 100%; max-width: 320px; }
  .cp-pillar-divider { display: none; }
  .club-section { padding: 38px 28px; }
  .midnight-section { padding: 42px 14px; }
  .midnight-inner { grid-template-columns: 1fr; padding: 18px; border-width: 6px; border-radius: 24px; gap: 28px; }
  .midnight-text { padding: 22px 12px; text-align: center; align-items: center; }
  .midnight-h { font-size: clamp(38px, 12vw, 58px); }
  .midnight-p { margin-left: auto; margin-right: auto; margin-bottom: 20px; }
  .cp-social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .contact { padding: 38px 28px; }
  .contact-email-big { margin-top: 18px; }
  .contact-socials { margin-top: 20px; }
  .cp-footer { padding: 34px 24px 28px; }
  .cp-footer-trust { flex-direction: column; gap: 10px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: space-between; }

  .cp-about { padding: 48px 28px; }
  .cp-about-two-col { flex-direction: column; }
  .cp-about-photo { flex: none; width: 100%; max-width: 320px; }
  .cp-about-inner { text-align: center; }
  .cp-about-quote { text-align: left; }
  .cp-community-inner { grid-template-columns: 1fr; gap: 32px; }
  .cp-community-card { min-height: 180px; }
  .cp-engage-inner { grid-template-columns: 1fr; }
  .stories-banner { grid-template-columns: 1fr; }
  .stories-banner-img { min-height: 260px; height: 260px; }
  .stories-banner-text { padding: 36px 24px; }
  .daily-paw-press-top .ds-item { font-size: 0.625rem; }
  .ds-track, .ds-item, .daily-sniff .ds-track, .daily-sniff .ds-item { font-size: 0.625rem; }
  .cp-scene, #cp-archie, #cp-teddy, #cp-pearl, #cp-mabel { grid-template-columns: 1fr; min-height: auto; }
  .cp-scene-image { min-height: unset; height: auto; aspect-ratio: 2 / 3; }
  #cp-teddy .cp-scene-text, #cp-mabel .cp-scene-text { grid-row: 2; }
  #cp-teddy .cp-scene-image, #cp-mabel .cp-scene-image { grid-row: 1; }
  .cp-scene-image::before { display: none; }
  .cp-scene-image::after { background: linear-gradient(to bottom, transparent 55%, rgba(13,10,8,0.6) 78%, #1a0f09 100%); }
  .cp-scene-text, #cp-teddy .cp-scene-text, #cp-mabel .cp-scene-text { padding: 4vw 7vw 10vw; }
  .cp-char-name { font-size: clamp(2.8rem, 12vw, 4rem); }
  body.homepage .hero-body { padding: 0 26px 80px; }
  body.homepage .hero-sub { max-width: 100%; }
}

@media (max-width: 640px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 560px) {
  #hdr.cp-premium-nav-wrap { padding: 0 8px; }
  .cp-premium-nav { width: calc(100vw - 18px); min-height: 64px; padding: 7px 11px 7px 15px; border-radius: 25px; }
}

@media (max-width: 480px) {
  .intro, .products, .hiw, .universe-bridge, .club-section, .contact { padding-top: 34px; padding-bottom: 34px; }
  .midnight-section { padding-top: 36px; padding-bottom: 36px; }
  .prod-intro { margin-bottom: 28px; }
  .hiw-step { padding-bottom: 1.55rem; }
  .cp-about { padding: 40px 20px; }
  .cp-social-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PAGE CONTEXT NAVBAR OVERRIDES
   (must stay near end — beats preceding rules by document order)
   ═══════════════════════════════════════════════ */

/* Homepage: warm cream pill, dark text, persists scrolled */
body.homepage { background: #f0dfc8; color: #2c1a0a; }
body.homepage .hero { background: transparent; overflow: visible; }
body.homepage .hero-body { padding: 0 80px 130px; color: #F5EDD8; }
@media (max-width: 768px) {
  body.homepage .hero-body { padding: 140px 26px 80px; }
}
body.homepage .hero-sub { max-width: 340px; color: rgba(245, 237, 216, 0.92); }
body.homepage .hero h1 { font-style: normal; font-size: clamp(42px, 5.5vw, 76px); color: #F5EDD8; }
body.homepage .hero h1 em { font-style: italic; color: #f5c070; }
body.homepage .hero .btn-hero-pri { background: #F5EDD8; color: #2c1a0a; }
body.homepage .hero .btn-hero-pri:hover { background: var(--orange); color: #2c1a0a; box-shadow: 0 10px 28px rgba(232, 128, 28, 0.38); transform: translateY(-2px); }
body.homepage .hero .btn-hero-sec { color: #F5EDD8; border-color: rgba(255, 255, 255, 0.6); background: rgba(0, 0, 0, 0.18); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
body.homepage .hero .btn-hero-sec:hover { background: rgba(0, 0, 0, 0.28); border-color: rgba(255, 255, 255, 0.8); }

body.homepage .cp-premium-nav,
body.homepage #hdr.scrolled .cp-premium-nav {
  background: rgba(255, 248, 240, 0.18);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(180, 140, 90, 0.22); box-shadow: none; transition: none;
}
body.homepage .cp-nav-link,
body.homepage #hdr.scrolled .cp-nav-link { color: #2c1a0a; transition: none; }
body.homepage .cp-nav-link:hover { background: rgba(44, 26, 10, 0.07); color: #2c1a0a; }
body.homepage .nav-paw-divider,
body.homepage #hdr:not(.scrolled) .nav-paw-divider,
body.homepage #hdr.scrolled .nav-paw-divider { filter: brightness(0) sepia(1) saturate(3) hue-rotate(340deg) brightness(0.2); opacity: 1; transition: none; }
body.homepage .hamburger span,
body.homepage #hdr.scrolled .hamburger span { background: #2c1a0a; }

/* Homepage section colours */
body.homepage .cp-wave-divider { display: block; line-height: 0; overflow: hidden; margin-bottom: -2px; }
body.homepage .cp-wave-divider svg { display: block; width: 100%; }
body.homepage .intro { background: #f0dfc8; }
body.homepage .hiw { background: #e6ceaa; padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
body.homepage .hiw .sec-h { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 48px; }
body.homepage .products { background: #f0dfc8; }
body.homepage .cp-about { background: #e6ceaa; padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
body.homepage .cp-social-section { background: #e6ceaa; padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
body.homepage .universe-bridge { background: #e6ceaa; color: #2c1a0a; }
body.homepage .universe-kicker { color: rgba(44, 26, 10, 0.45); text-transform: uppercase; letter-spacing: 0.24em; }
body.homepage .universe-title { color: #2c1a0a; }
body.homepage .universe-copy { color: rgba(44, 26, 10, 0.65); }
body.homepage .club-section { background: #f0dfc8; color: #2c1a0a; }
body.homepage .stories-banner-heading { color: #F5EDD8; }
body.homepage .stories-banner-copy { color: rgba(245, 237, 216, 0.75); }
body.homepage .stories-banner-btn { border-color: rgba(245, 237, 216, 0.4); color: #F5EDD8; }
body.homepage .stories-banner-btn:hover { background: rgba(245, 237, 216, 0.1); border-color: rgba(245, 237, 216, 0.7); }
body.homepage .cp-community-section { background: #f0dfc8; }
body.homepage .cp-community-section .sec-h { color: #2c1a0a; }
body.homepage .cp-community-sub { color: rgba(44, 26, 10, 0.65); }
body.homepage .cp-community-note { color: rgba(44, 26, 10, 0.45); font-style: italic; }
body.homepage .cp-community-card { background: #e6ceaa; border-color: rgba(180, 130, 80, 0.25); }
body.homepage .cp-community-placeholder-text { color: rgba(44, 26, 10, 0.45); }
body.homepage .cp-engage-section { background: #f0dfc8; }
body.homepage .contact { background: #e6ceaa; }
body.homepage .contact-simple-sub { color: rgba(44, 26, 10, 0.65); }
body.homepage .contact .sec-h { color: #2c1a0a; }
body.homepage .contact-socials a { background: #e6ceaa; border-color: rgba(180, 130, 80, 0.2); color: #4b2e1f; }
body.homepage .contact-socials a:hover { border-color: var(--orange); color: var(--orange); }
body.homepage .payment-strip { background: #e6ceaa; border-top: 1px solid rgba(180, 130, 80, 0.3); border-bottom: 1px solid rgba(180, 130, 80, 0.3); }
body.homepage .pay-track { display: flex; align-items: center; width: max-content; animation: payroll 30s linear infinite; }
body.homepage .pay-item { color: rgba(44, 26, 10, 0.6); }
body.homepage .pay-item svg { color: rgba(44, 26, 10, 0.5); }
body.homepage .pay-divider { background: rgba(180, 130, 80, 0.3); }
body.homepage .klarna-wordmark { background: rgba(44, 26, 10, 0.08); color: rgba(44, 26, 10, 0.65); }
body.homepage .cp-footer { background: #2c1a0a; }
body.homepage .hero-fade-bridge { display: none; }
body.homepage .hero-wave-divider { position: relative; z-index: 5; margin-top: -40px; }
body.homepage #intro-anchor { display: block; height: 0; }
body.homepage .scroll-cue { color: rgba(245, 237, 216, 0.5); }

body.homepage .sec-lbl { text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.6875rem; font-weight: 600; color: rgba(44, 26, 10, 0.42); font-style: normal; }
body.homepage .intro .sec-lbl, body.homepage .hiw .sec-lbl, body.homepage .products .sec-lbl,
body.homepage .cp-about .sec-lbl, body.homepage .cp-social-section .sec-lbl,
body.homepage .cp-community-section .sec-lbl, body.homepage .cp-poll-card .sec-lbl,
body.homepage .cp-newsletter-card .sec-lbl, body.homepage .contact-simple .sec-lbl { color: rgba(44, 26, 10, 0.65); }
body.homepage .sec-h { font-size: clamp(44px, 5.5vw, 72px); line-height: 1.02; }
body.homepage .cp-poll-card .sec-h em { color: var(--orange); }
body.homepage .cp-poll-card .sec-lbl { color: rgba(44, 26, 10, 0.65); }

/* nav-cream override (used on subpages with light backgrounds) */
body.nav-cream #hdr .hdr-inner,
body.nav-cream #hdr .cp-premium-nav,
body.nav-cream header#hdr .hdr-inner.cp-premium-nav {
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(180,140,90,0.22); box-shadow: none;
}
body.nav-cream .cp-premium-links .cp-nav-link,
body.nav-cream #hdr .hdr-nav a,
body.nav-cream #hdr .cp-nav-link { color: #2c1a0a; text-shadow: none; }
body.nav-cream .cp-premium-links .cp-nav-link:hover { color: var(--orange); background: rgba(44,26,10,0.07); }
body.nav-cream .cp-premium-links .cp-nav-link.active { color: var(--orange); }
body.nav-cream #hdr .nav-paw-divider { filter: brightness(0) sepia(1) saturate(3) hue-rotate(340deg) brightness(0.2); opacity: 1; }
body.nav-cream .hamburger span { background: #2c1a0a; }

/* ══════════════════════════════════════════════
   PAGE-LIGHT / PAGE-DARK OVERRIDES — must be last
   ══════════════════════════════════════════════ */
body.page-light #hdr .hdr-inner,
body.page-light #hdr .cp-premium-nav,
body.page-light header#hdr .hdr-inner.cp-premium-nav {
  background: rgba(22, 13, 7, 0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13); box-shadow: none !important;
}
body.page-light .cp-premium-links .cp-nav-link,
body.page-light #hdr .hdr-nav a,
body.page-light #hdr .cp-nav-link { color: #F5EDD8; text-shadow: none; }
body.page-light .cp-premium-links .cp-nav-link:hover,
body.page-light .cp-premium-links .cp-nav-link:focus-visible,
body.page-light .cp-premium-links .cp-nav-link.active { color: #fff; background: rgba(245, 237, 216, 0.10); box-shadow: none !important; }
body.page-light #hdr .nav-paw-divider { filter: brightness(0) sepia(1) saturate(3) hue-rotate(340deg) brightness(0.2); opacity: 1; }
body.page-dark #hdr .nav-paw-divider { filter: none; opacity: 0.85; }
body.page-dark #hdr .cp-nav-link { color: #F5EDD8; }
body.page-dark .hamburger span { background: #F5EDD8; }
body.page-dark #hdr .cp-premium-nav,
body.page-dark #hdr.scrolled .cp-premium-nav {
  background: rgba(22, 13, 7, 0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 237, 216, 0.15);
}

/* ── STORIES PAGE ── */
.stories-hero { position: relative; background: #1a0f09; min-height: 68vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.stories-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 38%; opacity: 0.42; }
.stories-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, #1a0f09 0%, rgba(26,15,9,0.2) 28%, rgba(26,15,9,0.2) 62%, #1a0f09 100%); }
.stories-hero-body { position: relative; z-index: 2; padding: clamp(100px, 14vw, 160px) 24px clamp(64px, 9vw, 100px); max-width: 800px; }
.stories-hero-label { display: inline-block; font-family: "DM Sans", system-ui, sans-serif; font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; color: #c4935a; margin-bottom: 22px; font-weight: 700; }
.stories-hero-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(52px, 7vw, 96px); line-height: 1.0; font-weight: 400; color: #F5EDD8; letter-spacing: -0.02em; margin: 0 0 26px; }
.stories-hero-title em { color: #c4935a; font-style: italic; }
.stories-hero-sub { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(18px, 2.4vw, 24px); color: rgba(245,237,216,0.68); max-width: 540px; margin: 0 auto 40px; line-height: 1.55; font-weight: 300; }
.stories-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.stories-pill-btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: 100px; font-family: "DM Sans", system-ui, sans-serif; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; transition: all 0.25s ease; }
.stories-pill-btn--primary { background: #c4935a; color: #1a0f09; }
.stories-pill-btn--primary:hover { background: #d4a46a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,147,90,0.35); }
.stories-pill-btn--secondary { background: rgba(255,255,255,0.08); color: #F5EDD8; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.stories-pill-btn--secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ── Episode section ── */
.cp-episode-section { background: #1a0f09; padding: clamp(64px, 9vw, 120px) 24px clamp(72px, 10vw, 140px); position: relative; z-index: 2; }
.cp-episode-inner { max-width: 860px; margin: 0 auto; }
.cp-episode-header { text-align: center; margin-bottom: 48px; }
.cp-episode-label { display: inline-block; font-family: "DM Sans", system-ui, sans-serif; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #c4935a; margin-bottom: 16px; }
.cp-episode-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(42px, 6vw, 80px); font-weight: 400; color: #F5EDD8; letter-spacing: -0.01em; line-height: 1; margin: 0; }
.cp-episode-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 0 0 1px rgba(196,147,90,0.2), 0 32px 80px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,220,160,0.08); }
.cp-episode-frame::after { content: ""; position: absolute; inset: 0; border-radius: 20px; border: 1px solid rgba(196,147,90,0.25); pointer-events: none; }
.cp-episode-frame img { width: 100%; height: auto; display: block; }
.cp-episode-text { max-width: 680px; margin: 52px auto 0; }
.cp-episode-text p { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(17px, 2vw, 21px); line-height: 1.85; color: rgba(245,237,216,0.82); margin-bottom: 1.4em; font-weight: 400; }
.cp-episode-text p:first-child { font-size: clamp(19px, 2.2vw, 24px); color: rgba(245,237,216,0.95); font-style: italic; }
.cp-episode-text p:last-child { margin-bottom: 0; }


/* ── LEGAL PAGES ── */
.legal-hero { background: var(--oat); padding: clamp(80px, 12vw, 140px) 80px clamp(40px, 5vw, 64px); text-align: center; }
.legal-hero .sec-lbl { display: block; margin-bottom: 14px; }
.legal-hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px, 5vw, 64px); font-weight: 400; line-height: 1.05; color: var(--charcoal); margin-bottom: 10px; }
.legal-hero p { color: var(--taupe); font-size: 14px; }
.legal-body { background: var(--white); padding: clamp(48px, 6vw, 80px) 80px clamp(64px, 9vw, 120px); }
.legal-content { max-width: 700px; margin: 0 auto; color: var(--taupe); font-size: 15px; line-height: 1.75; }
.legal-content h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; color: var(--charcoal); margin: 2rem 0 0.6rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 0.85rem; }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 0.85rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(185,95,20,0.3); }
.legal-content a:hover { border-color: var(--orange); }


/* ═══════════════════════════════════════════════
   CARROT PAWDLE PAGE
   ═══════════════════════════════════════════════ */
body.pawdle-body {
    background: #2b1d15;
    color: #4A2D1B;
  }
  .pawdle-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .pawdle-bg picture,
  .pawdle-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .pawdle-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22, 12, 6, 0.22);
  }
  .pawdle-page {
    position: relative;
    z-index: 1;
  }
  .delivery-strip, .cp-footer {
    position: relative;
    z-index: 2;
  }
  .pawdle-page { max-width: 1120px; margin: 0 auto; padding: 80px 32px 80px; }
  .pawdle-hero { border-radius: 30px; overflow: hidden; box-shadow: 0 22px 52px rgba(0,0,0,.28); margin-bottom: 36px; border: 1px solid rgba(255,247,237,.18); }
  .pawdle-hero img { width: 100%; display: block; }
  .pawdle-card { background: rgba(26, 15, 9, 0.75); border-radius: 28px; padding: clamp(34px,4vw,52px) clamp(16px,3vw,40px) clamp(20px,3vw,36px); border: 1px solid rgba(255,220,160,0.3); box-shadow: 0 8px 40px rgba(0,0,0,.3); text-align: center; position: relative; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); max-width: 860px; margin: 0 auto; }
  .pawdle-card::before, .pawdle-card::after { display: none; }
  
.pawdle-title {
  color: #f7d596 !important;
  font-weight: 900;
  text-shadow:
    0 2px 10px rgba(0,0,0,.75),
    0 0 2px rgba(255,214,140,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  -webkit-text-fill-color: #f7d596 !important;
  background: none !important;
  filter: none !important;
}

  
.pawdle-subtitle {
  color: #f7d596 !important;
}

  #pawdle-game { max-width: 440px; margin: 0 auto; position: relative; z-index: 1; }
  .pawdle-grid { display: grid; grid-template-rows: repeat(6, 1fr); gap: 8px; margin-bottom: 16px; }
  .pawdle-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .pawdle-tile { aspect-ratio: 1; border: 2px solid rgba(227,189,139,0.35); border-radius: 10px; background: rgba(255,253,248,0.12); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: clamp(18px,5.5vw,32px); text-transform: uppercase; color: #F5EDD8; text-shadow: 0 1px 6px rgba(0,0,0,.7); box-shadow: inset 0 1px 0 rgba(255,255,255,.15); transition: background .18s ease, border-color .18s ease; perspective: 250px; overflow-anchor: none; scroll-margin: 0; }
  .pawdle-tile.filled { transform: scale(1.035); border-color: rgba(199,130,58,0.9); }
  .pawdle-tile.correct { background: #6B8F5E; color: white; border-color: #6B8F5E; animation: tilePop 0.35s cubic-bezier(.36,.07,.19,.97) forwards; }
  .pawdle-tile.present { background: #C8922A; color: white; border-color: #C8922A; animation: tilePop 0.35s cubic-bezier(.36,.07,.19,.97) forwards; }
  .pawdle-tile.absent { background: #4A3728; color: white; border-color: #4A3728; }
  .pawdle-message { min-height: 28px; margin: 12px 0 10px; font-weight: 700; color: #ffe0b0; text-shadow: 0 2px 8px rgba(0,0,0,.8); }
  .pawdle-input-hint { margin: 12px 0 0; color: rgba(255,247,237,0.7); font-size: 14px; font-weight: 700; }
  #pawdleForm { position: fixed; left: -9999px; top: 50%; width: 1px; height: 1px; overflow: hidden; }
  #pawdleInput { width: 1px; height: 1px; border: 0; padding: 0; font-size: 16px; opacity: 0; }

  /* Phone-only iOS/Android keyboard fix. Desktop keeps the old stable off-screen input. */
  @media(max-width:700px) and (pointer: coarse){
    #pawdleForm {
      position: absolute;
      left: 50%;
      top: 48%;
      width: 2px;
      height: 2px;
      opacity: 0.01;
      overflow: hidden;
      pointer-events: none;
      z-index: 5;
      transform: translate(-50%, -50%);
    }
    #pawdleInput {
      width: 2px;
      height: 2px;
      border: 0;
      padding: 0;
      margin: 0;
      font-size: 16px;
      opacity: 0.01;
      background: transparent;
      color: transparent;
      caret-color: transparent;
      -webkit-user-select: text;
      user-select: text;
      transform: translateZ(0);
    }
  }
  .pawdle-submit-hidden { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .pawdle-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
  .pawdle-btn { border: 0; border-radius: 999px; background: #f28c28; color: #fff; padding: 12px 18px; font-weight: 800; cursor: pointer; box-shadow: 0 10px 22px rgba(242,140,40,.24); }
  .pawdle-btn.secondary { background: #6f4a2e; }
  .how-to-play { margin: 28px auto 0; max-width: 660px; background: rgba(255,241,223,0.15); border: 1px solid rgba(234,208,170,0.3); border-radius: 26px; padding: 22px 28px; position: relative; z-index: 1; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .how-to-play h2 { font-family: "Bree Serif", Georgia, serif; margin: 0 0 12px; color: #F5EDD8; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
  .how-to-play p { margin: 8px 0; color: #F5EDD8; text-shadow: 0 1px 6px rgba(0,0,0,.65); font-weight: 500; }
  .pawdle-play-area { display: grid; grid-template-columns: minmax(0, 400px) minmax(240px, 300px); gap: 24px; justify-content: center; align-items: start; position: relative; z-index: 1; }
  #pawdle-game { margin: 0; }
  .pawdle-leaderboard { background: rgba(30, 16, 8, 0.72); border: 1px solid #ead0aa; border-radius: 26px; padding: 22px; text-align: center; box-shadow: 0 10px 24px rgba(80,45,20,.2); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .pawdle-leaderboard h2 { font-family: "Bree Serif", Georgia, serif; margin: 0 0 6px; color: #ffd89b; font-size: 28px; text-shadow: none; }
  .pawdle-leaderboard p { margin: 0 0 16px; color: rgba(255,237,200,0.8); font-size: 14px; text-shadow: none; }
  .leaderboard-list { display: flex; flex-direction: column; gap: 10px; }
  .leaderboard-row { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; background: rgba(255,248,237,0.1); border: 1px solid rgba(255,220,160,0.2); border-radius: 16px; padding: 10px 12px; color: #F5EDD8; font-weight: 800; text-shadow: none; }
  .leaderboard-rank { color: #f28c28; }
  .leaderboard-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .leaderboard-score { color: rgba(255,220,160,0.85); font-size: 13px; }
  .leaderboard-empty { color: #7b5330; font-weight: 700; background: #fff8ed; border-radius: 16px; padding: 14px; }
  .pawdle-home { display: none; width: fit-content; margin: 36px auto 48px; padding: 13px 28px; background: #6B5540; border: none; border-radius: 999px; color: #F5EDD8; font-weight: 500; font-size: 0.9375rem; letter-spacing: 0.02em; text-decoration: none; text-align: center; transition: background 0.18s, transform 0.12s; }
  .pawdle-home:hover { background: #4a3a2a; transform: translateY(-1px); }

  .pawdle-keyboard { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; touch-action: manipulation; pointer-events: none; user-select: none; contain: layout; overflow-anchor: none; }
  .pawdle-kb-row { display: flex; justify-content: center; gap: 6px; flex-wrap: nowrap; }
  .pawdle-key { border: 0; border-radius: 10px; min-width: 32px; height: 46px; padding: 0 8px; background: rgba(255,247,237,0.2); color: #F5EDD8; font-weight: 800; font-size: 14px; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); transition: transform .12s ease, background .12s ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  .pawdle-key.key-wide { min-width: 62px; font-size: 12px; }
  .pawdle-key.correct { background: #6B8F5E; color: white; }
  .pawdle-key.present { background: #C8922A; color: white; }
  .pawdle-key.absent { background: #4A3728; color: #e8cfa8; border-color: #5a4030; }
  .pawdle-key:active { background: rgba(201,169,122,0.75); transform: scale(.93); }
  @media(max-width:700px){ .pawdle-keyboard { display: flex; gap: 6px; } .pawdle-kb-row { gap: 4px; } .pawdle-key { min-width: 28px; height: 42px; padding: 0 6px; font-size: 12px; border-radius: 8px; } .pawdle-key.key-wide { min-width: 54px; font-size: 10px; } .pawdle-input-hint { margin: 12px 0 0; color: rgba(255,247,237,0.7); font-size: 14px; font-weight: 700; } .pawdle-grid { gap: 6px; } .pawdle-row { gap: 6px; } }
  @media(max-width:380px){ .pawdle-key { min-width: 25px; height: 40px; padding: 0 4px; } .pawdle-key.key-wide { min-width: 48px; } }
  @media(max-width:700px){ .pawdle-page { padding: 132px 14px 70px; } .pawdle-hero { border-radius: 22px; margin-bottom: 22px; } .pawdle-card { border-radius: 22px; padding: 34px 14px 22px; } .pawdle-play-area { grid-template-columns: 1fr; gap: 22px; } #pawdle-game { margin: 0 auto; width: 100%; } }

  /* When the native iOS keyboard is open, make Pawdle a compact play view.
     This prevents the visible letter keyboard from sitting in the middle and
     covering the lower rows. */
  @media(max-width:700px) and (pointer: coarse){
    /* Simple, stable keyboard-open layout.
       Let the page scroll naturally — no transforms, no row shifting. */
    body.pawdle-keyboard-open { overflow-x: hidden; overflow-y: auto; position: static; width: auto; }
    body.pawdle-keyboard-open .delivery-strip,
    body.pawdle-keyboard-open header#hdr,
    body.pawdle-keyboard-open .cp-footer,
    body.pawdle-keyboard-open .how-to-play,
    body.pawdle-keyboard-open .pawdle-actions,
    body.pawdle-keyboard-open .pawdle-input-hint,
    body.pawdle-keyboard-open .pawdle-leaderboard,
    body.pawdle-keyboard-open .pawdle-home { display: none !important; }

    body.pawdle-keyboard-open .pawdle-page {
      position: static;
      height: auto;
      min-height: 0;
      overflow: visible;
      padding: max(100px, calc(env(safe-area-inset-top) + 90px)) 10px 340px !important;
      max-width: none;
      box-sizing: border-box;
      display: block;
      overscroll-behavior-y: contain;
    }
    body.pawdle-keyboard-open .pawdle-card {
      width: min(calc(100vw - 20px), 390px);
      max-width: 390px;
      margin-left: auto;
      margin-right: auto;
      padding: 16px 12px 12px;
      border-radius: 18px;
      box-sizing: border-box;
      transform: none !important;
      position: relative;
      overflow: visible;
    }
    body.pawdle-keyboard-open .pawdle-play-area { display: block; width: 100%; }
    body.pawdle-keyboard-open #pawdle-game {
      display: block;
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    body.pawdle-keyboard-open .pawdle-grid {
      width: min(290px, calc(100vw - 80px));
      max-width: 290px;
      margin-left: auto;
      margin-right: auto;
      gap: 4px;
      margin-bottom: 6px;
    }
    body.pawdle-keyboard-open .pawdle-row {
      gap: 4px;
      width: 100%;
      box-sizing: border-box;
      scroll-margin-top: 120px !important;
      scroll-margin-bottom: 260px !important;
    }
    body.pawdle-keyboard-open .pawdle-tile { border-radius: 7px; font-size: clamp(16px, 6vw, 23px); }
    body.pawdle-keyboard-open .pawdle-message { min-height: 20px; margin: 5px 0; font-size: 13px; }
    body.pawdle-keyboard-open .pawdle-keyboard { margin-top: 10px; overflow-anchor: none; contain: layout; }
  }

.hdr-preview-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #9a4f10;
  background: #fff0d6;
  border: 1px solid #e0a84e;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  top: -2px;
  flex-shrink: 0;
}


  /* Opening splash removed: Pawdle now loads straight into the game. */


  .pawdle-tile.shake {
    animation: tileShake 0.5s ease;
  }

  @keyframes tilePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); }
    70%  { transform: scale(0.94); }
    100% { transform: scale(1); }
  }
  .pawdle-tile.correct, .pawdle-tile.present {
    will-change: transform;
  }
  @keyframes tileShake {
    0%,100% { transform: translateX(0); }
    15% { transform: translateX(-6px); }
    30% { transform: translateX(6px); }
    45% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
    90% { transform: translateX(3px); }
  }

  .pawdle-tile.active-cursor {
    border-color: rgba(227,189,139,0.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 2px rgba(227,189,139,0.4);
    animation: cursorPulse 1.1s ease-in-out infinite;
    overflow-anchor: none;
    scroll-margin: 0;
  }
  @keyframes cursorPulse {
    0%, 100% { border-color: rgba(227,189,139,0.9); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 2px rgba(227,189,139,0.3); }
    50% { border-color: rgba(242,140,40,1); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 3px rgba(242,140,40,0.35); }
  }

  .pawdle-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
  }
  .pawdle-title-group {
    text-align: center;
    flex: 1;
  }
  .pawdle-title-group 
.pawdle-title {
  color: #f7d596 !important;
  font-weight: 900;
  text-shadow:
    0 2px 10px rgba(0,0,0,.75),
    0 0 2px rgba(255,214,140,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  -webkit-text-fill-color: #f7d596 !important;
  background: none !important;
  filter: none !important;
}

  .pawdle-title-group 
.pawdle-subtitle {
  color: #f7d596 !important;
}

  .pawdle-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(227,189,139,0.4);
    background: rgba(255,247,237,0.12);
    color: #F5EDD8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s, transform 0.1s;
    backdrop-filter: blur(4px);
  }
  .pawdle-icon-btn:hover {
    background: rgba(255,247,237,0.22);
    border-color: rgba(227,189,139,0.7);
  }
  .pawdle-icon-btn:active { transform: scale(0.93); }



  /* Force marquee animation regardless of JS timing */
  body.pawdle-body .mq-track { animation-name: mqscroll !important; animation-duration: 120s; animation-timing-function: linear !important; animation-iteration-count: infinite !important; }
  /* Pawdle cosy warmth refinements - fixed */
  
.pawdle-title {
  color: #f7d596 !important;
  font-weight: 900;
  text-shadow:
    0 2px 10px rgba(0,0,0,.75),
    0 0 2px rgba(255,214,140,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  -webkit-text-fill-color: #f7d596 !important;
  background: none !important;
  filter: none !important;
}

  .pawdle-title-carrot {
    width: clamp(38px, 5.6vw, 64px);
    height: auto;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,.45));
    transform: rotate(7deg) translateY(2px);
    flex: 0 0 auto;
  }
  
.pawdle-subtitle {
  color: #f7d596 !important;
}

  .how-to-play {
    margin-top: 34px;
    max-width: 720px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255,190,96,.16), transparent 62%),
      linear-gradient(180deg, rgba(70, 36, 15, 0.76), rgba(39, 20, 10, 0.82));
    border: 1.5px solid rgba(204, 126, 42, 0.55);
    box-shadow: 0 16px 34px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,232,188,.08);
  }
  .how-to-play h2 {
    color: #ffd89b;
    text-shadow: 0 2px 10px rgba(0,0,0,.62);
  }
  .how-to-play p {
    color: #ffe3b4;
  }

  @media(max-width:700px){
    
.pawdle-title {
  color: #f7d596 !important;
  font-weight: 900;
  text-shadow:
    0 2px 10px rgba(0,0,0,.75),
    0 0 2px rgba(255,214,140,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  -webkit-text-fill-color: #f7d596 !important;
  background: none !important;
  filter: none !important;
}

    .pawdle-title-carrot {
      width: 38px;
    }
  }

  /* Pawdle preview-mismatch cleanup: warm text/card only, no generated footer strip */
  .pawdle-title {
    color: #f7d596 !important;
    -webkit-text-fill-color: #f7d596 !important;
    background: none !important;
    filter: none !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.75), 0 0 2px rgba(255,214,140,.25);
  }
  .pawdle-subtitle {
    color: #f7d596 !important;
  }
  .pawdle-title-carrot {
    width: clamp(34px, 5vw, 58px);
    height: auto;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,.45));
    transform: rotate(7deg) translateY(2px);
  }
  .how-to-play {
    background: linear-gradient(180deg, rgba(62, 32, 16, 0.72), rgba(35, 18, 10, 0.82)) !important;
    border: 1.5px solid rgba(204, 126, 42, 0.48) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,232,188,.08) !important;
  }
  .how-to-play h2 {
    color: #f7d596 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.62);
  }
  .how-to-play p {
    color: #ffe3b4 !important;
  }


  /* Stable Pawdle recovery: top and bottom cleaned back to a reliable premium look */
  .pawdle-title {
    color: #ffd89b !important;
    -webkit-text-fill-color: #ffd89b !important;
    background: none !important;
    filter: none !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.7) !important;
    overflow: visible !important;
  }

  .pawdle-subtitle {
    color: #ffd89b !important;
    -webkit-text-fill-color: #ffd89b !important;
    background: rgba(20, 9, 4, .58) !important;
    border: 1px solid rgba(255, 216, 155, .12) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.22) !important;
  }

  .leaderboard h2,
  .how-to-play h2 {
    color: #ffd89b !important;
    -webkit-text-fill-color: #ffd89b !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.62) !important;
  }

  .leaderboard p,
  .how-to-play p {
    color: #ead3ad !important;
  }

  .how-to-play {
    background: linear-gradient(180deg, rgba(55, 29, 15, .72), rgba(31, 16, 9, .82)) !important;
    border: 1.5px solid rgba(170, 104, 47, .5) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,235,190,.07) !important;
    margin-bottom: 26px !important;
  }

  /* Hide any accidental decorative footer leftovers from previous builds */
  .pawdle-final-footer,
  .pawdle-cosy-bottom,
  .pawdle-forest-strip,
  .pawdle-logo-row,
  .pawdle-woodland-strip,
  .pawdle-bottom-mark {
    display: none !important;
  }



/* REAL PAWDLE MAKEOVER - cinematic story background + avatar leaderboard */
body.pawdle-body {
  --pawdle-ink:#140b07;
  --pawdle-panel:rgba(30,16,9,.66);
  --pawdle-panel-strong:rgba(24,12,7,.82);
  --pawdle-gold:#f4cf8a;
  --pawdle-honey:#d99a3d;
  --pawdle-cream:#fff1cf;
  --pawdle-bronze:#9f6230;
}
body.pawdle-body{background:#140b07!important;color:var(--pawdle-cream)!important;}
.pawdle-bg img{object-position:center center!important;filter:saturate(1.06) contrast(1.04) brightness(.86)!important;}
.pawdle-bg::after{background:
  radial-gradient(circle at 18% 18%, rgba(244,178,86,.24), transparent 34%),
  radial-gradient(circle at 70% 78%, rgba(255,204,121,.13), transparent 38%),
  linear-gradient(90deg, rgba(10,4,2,.72) 0%, rgba(18,8,4,.46) 42%, rgba(14,6,3,.70) 100%),
  linear-gradient(180deg, rgba(10,4,2,.42), rgba(10,4,2,.68))!important;}
.pawdle-page{max-width:1160px!important;padding:112px 28px 70px!important;}
.pawdle-card{max-width:980px!important;background:
  radial-gradient(circle at 18% 0%, rgba(255,197,105,.13), transparent 36%),
  linear-gradient(180deg, rgba(40,22,12,.70), rgba(18,9,5,.76))!important;
  border:1px solid rgba(244,207,138,.28)!important;border-radius:34px!important;
  box-shadow:0 28px 80px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,236,194,.10)!important;
  backdrop-filter:blur(12px) saturate(1.05)!important;-webkit-backdrop-filter:blur(12px) saturate(1.05)!important;
}
.pawdle-title{font-family:"Bree Serif", Georgia, serif!important;font-size:clamp(42px,6vw,78px)!important;letter-spacing:.01em!important;color:var(--pawdle-gold)!important;-webkit-text-fill-color:var(--pawdle-gold)!important;text-shadow:0 4px 28px rgba(0,0,0,.85),0 0 22px rgba(244,173,76,.16)!important;flex-wrap:nowrap!important;}
.pawdle-title-carrot{width:clamp(22px,2.8vw,34px)!important;opacity:.9!important;flex-shrink:0!important;display:inline-block!important;vertical-align:middle!important;}
.pawdle-subtitle{display:inline-block!important;margin-top:6px!important;padding:9px 16px!important;border-radius:999px!important;background:rgba(15,7,4,.44)!important;border:1px solid rgba(244,207,138,.18)!important;color:#f8dfad!important;-webkit-text-fill-color:#f8dfad!important;font-size:14px!important;letter-spacing:.02em!important;}
.pawdle-play-area{grid-template-columns:minmax(320px,430px) minmax(285px,340px)!important;gap:28px!important;align-items:start!important;}
#pawdle-game{background:linear-gradient(180deg, rgba(15,7,4,.48), rgba(15,7,4,.22));border:1px solid rgba(244,207,138,.12);border-radius:28px;padding:20px 18px 18px;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);}
.pawdle-grid{gap:9px!important;margin-bottom:14px!important;}
.pawdle-row{gap:9px!important;}
.pawdle-tile{border-radius:14px!important;border:1.5px solid rgba(244,207,138,.22)!important;background:linear-gradient(180deg, rgba(120,78,44,.38), rgba(72,42,22,.52))!important;color:#fff4d7!important;box-shadow:inset 0 1px 0 rgba(255,210,150,.12),0 10px 22px rgba(0,0,0,.28)!important;}
.pawdle-tile.filled,.pawdle-tile.active-cursor{border-color:rgba(244,207,138,.82)!important;box-shadow:0 0 0 2px rgba(244,207,138,.12),0 0 24px rgba(217,154,61,.18),inset 0 1px 0 rgba(255,255,255,.18)!important;}
.pawdle-tile.correct{background:#6B8F5E!important;border-color:#7faa70!important;animation:tilePop 0.35s cubic-bezier(.36,.07,.19,.97) forwards!important;}
.pawdle-tile.present{background:#C8922A!important;border-color:#dba84a!important;animation:tilePop 0.35s cubic-bezier(.36,.07,.19,.97) forwards!important;}
.pawdle-tile.absent{background:#4A3728!important;border-color:#5a4030!important;}
.pawdle-key{background:linear-gradient(180deg, rgba(120,78,44,.55), rgba(72,42,22,.65))!important;border:1px solid rgba(244,207,138,.25)!important;color:#fff0cf!important;border-radius:12px!important;box-shadow:0 8px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12)!important;}
.pawdle-key:active{background:rgba(244,207,138,.32)!important;}
.pawdle-key.correct{background:linear-gradient(180deg,#78965b,#526b42)!important;border-color:#96b875!important;color:#fff!important;}
.pawdle-key.present{background:linear-gradient(180deg,#d99a3d,#9f632c)!important;border-color:#e9b66d!important;color:#fff!important;}
.pawdle-key.absent{background:linear-gradient(180deg,#4a3028,#2e1c12)!important;border-color:#5a3d2a!important;color:rgba(255,220,170,.5)!important;}
.pawdle-btn{background:linear-gradient(180deg,#e3a049,#aa642c)!important;color:#fff7df!important;border:1px solid rgba(255,231,177,.28)!important;}
.pawdle-leaderboard{background:linear-gradient(180deg, rgba(34,18,10,.74), rgba(18,9,5,.80))!important;border:1px solid rgba(244,207,138,.24)!important;border-radius:30px!important;padding:20px!important;box-shadow:0 22px 52px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,236,194,.09)!important;backdrop-filter:blur(13px)!important;-webkit-backdrop-filter:blur(13px)!important;}
.pawdle-leaderboard h2{font-family:"Bree Serif", Georgia, serif!important;color:var(--pawdle-gold)!important;font-size:30px!important;letter-spacing:.01em!important;margin-bottom:5px!important;}
.pawdle-leaderboard p{color:rgba(255,237,200,.72)!important;font-size:13px!important;line-height:1.35!important;margin-bottom:14px!important;}
.score-sequence{display:grid;grid-template-columns:repeat(6,1fr);gap:6px;margin:0 0 15px;padding:8px;border-radius:16px;background:rgba(255,239,203,.065);border:1px solid rgba(244,207,138,.14);box-shadow:inset 0 1px 0 rgba(255,255,255,.055);}
.score-sequence span{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:38px;border-radius:12px;background:linear-gradient(180deg,rgba(255,239,203,.12),rgba(255,239,203,.045));border:1px solid rgba(244,207,138,.12);}
.score-sequence strong{font-family:"Bree Serif",Georgia,serif;color:#f4cf8a;font-size:17px;line-height:1;}
.score-sequence small{margin-top:4px;color:rgba(255,237,200,.58);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;}
.leaderboard-list{gap:12px!important;}
.leaderboard-row{grid-template-columns:34px 52px minmax(0,1fr) auto!important;gap:11px!important;text-align:left!important;background:linear-gradient(180deg, rgba(255,239,203,.12), rgba(255,239,203,.055))!important;border:1px solid rgba(244,207,138,.18)!important;border-radius:20px!important;padding:10px 11px!important;color:#fff0cf!important;box-shadow:0 12px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07)!important;}
.leaderboard-row:nth-child(1){background:linear-gradient(180deg, rgba(244,207,138,.20), rgba(255,239,203,.07))!important;border-color:rgba(244,207,138,.38)!important;}
.leaderboard-rank{font-size:22px!important;line-height:1!important;text-align:center!important;color:var(--pawdle-gold)!important;}
.leaderboard-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid rgba(244,207,138,.58);box-shadow:0 0 0 3px rgba(244,207,138,.09),0 8px 20px rgba(0,0,0,.35);}
.leaderboard-avatar.leaderboard-avatar-initial{display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(180deg,rgba(255,239,203,.18),rgba(255,239,203,.07));border:2px solid rgba(244,207,138,.35);font-family:"Bree Serif",Georgia,serif;font-size:20px;font-weight:700;color:#f4cf8a;flex-shrink:0;}
.leaderboard-avatar.pearl{border-color:rgba(226,220,209,.70)}
.leaderboard-avatar.teddy{border-color:rgba(195,126,69,.76)}
.leaderboard-name{font-weight:800!important;color:#fff5d9!important;font-size:15px!important;}
.leaderboard-score{font-weight:800!important;color:#f4cf8a!important;font-size:13px!important;white-space:nowrap!important;}
.leaderboard-toggle{margin-top:13px;border:1px solid rgba(244,207,138,.22);border-radius:999px;background:rgba(255,239,203,.10);color:#f4cf8a;padding:9px 13px;font-weight:800;cursor:pointer;width:100%;}
.how-to-play{max-width:760px!important;background:linear-gradient(180deg, rgba(34,18,10,.58), rgba(18,9,5,.64))!important;border-color:rgba(244,207,138,.18)!important;border-radius:28px!important;color:#ffe7b8!important;}
.how-to-play h2{color:var(--pawdle-gold)!important;}
.how-to-play p{color:#ffe7b8!important;}
@media(max-width:780px){.pawdle-page{padding:82px 12px 52px!important}.pawdle-card{border-radius:28px!important;padding:28px 12px 20px!important}.pawdle-play-area{grid-template-columns:1fr!important;gap:20px!important}#pawdle-game{padding:14px 10px!important}.pawdle-title{font-size:clamp(38px,11vw,58px)!important}.pawdle-leaderboard{max-width:420px;margin:0 auto;width:100%;box-sizing:border-box}.leaderboard-row{grid-template-columns:30px 46px minmax(0,1fr) auto!important;padding:9px!important}.leaderboard-avatar{width:43px;height:43px}.pawdle-bg img{object-position:center center!important}.pawdle-bg::after{background:linear-gradient(180deg, rgba(12,5,2,.55), rgba(12,5,2,.75)),linear-gradient(90deg, rgba(12,5,2,.70), rgba(12,5,2,.35))!important}}


/* Premium How To Play cards */
.how-to-play{
  max-width:820px!important;
  margin:30px auto 28px!important;
  padding:24px!important;
  position:relative!important;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 50% 0%, rgba(244,207,138,.16), transparent 48%),
    linear-gradient(180deg, rgba(36,18,9,.72), rgba(15,7,4,.76))!important;
  border:1px solid rgba(244,207,138,.26)!important;
  border-radius:30px!important;
  box-shadow:0 24px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,238,200,.10)!important;
  backdrop-filter:blur(12px) saturate(1.05)!important;
  -webkit-backdrop-filter:blur(12px) saturate(1.05)!important;
}
.how-to-play::before{
  content:"";
  position:absolute;
  inset:-40% -10% auto;
  height:150px;
  background:radial-gradient(ellipse at center, rgba(255,179,75,.18), transparent 68%);
  pointer-events:none;
}
.how-to-header{
  position:relative;
  text-align:center;
  margin-bottom:18px;
}
.how-to-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:7px;
  padding:5px 11px;
  border:1px solid rgba(244,207,138,.20);
  border-radius:999px;
  background:rgba(255,239,203,.07);
  color:rgba(255,230,184,.76);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.how-to-play h2{
  margin:0!important;
  font-family:"Bree Serif", Georgia, serif!important;
  font-size:clamp(30px,4vw,44px)!important;
  color:var(--pawdle-gold)!important;
  -webkit-text-fill-color:var(--pawdle-gold)!important;
  text-shadow:0 3px 16px rgba(0,0,0,.72), 0 0 18px rgba(244,173,76,.14)!important;
}
.how-to-header p{
  max-width:560px;
  margin:9px auto 0!important;
  color:rgba(255,236,199,.76)!important;
  font-size:14px!important;
  line-height:1.45!important;
}
.how-to-rules{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.how-rule-card{
  min-width:0;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,239,203,.12), rgba(255,239,203,.055));
  border:1px solid rgba(244,207,138,.18);
  box-shadow:0 12px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07);
}
.how-example{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:5px;
  margin-bottom:12px;
}
.rule-tile{
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:linear-gradient(180deg, rgba(255,244,218,.14), rgba(255,244,218,.055));
  border:1px solid rgba(244,207,138,.25);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10), 0 8px 16px rgba(0,0,0,.18);
  color:#fff1d3;
  font-size:clamp(12px,2vw,18px);
  font-weight:900;
  line-height:1;
}
.rule-tile.rule-correct{
  background:linear-gradient(180deg,#78965b,#526b42);
  border-color:#a7c584;
  box-shadow:0 0 18px rgba(120,150,91,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.rule-tile.rule-present{
  background:linear-gradient(180deg,#d99a3d,#9f632c);
  border-color:#f0bd72;
  box-shadow:0 0 18px rgba(217,154,61,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.rule-tile.rule-absent{
  background:linear-gradient(180deg,#7b6d61,#51463f);
  border-color:#9a8f83;
  box-shadow:0 0 18px rgba(160,145,130,.14), inset 0 1px 0 rgba(255,255,255,.13);
}
.how-rule-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:left;
}
.how-rule-copy strong{
  color:#ffe4ad;
  font-size:16px;
  letter-spacing:.01em;
}
.how-rule-copy span{
  color:rgba(255,236,199,.72);
  font-size:13px;
  line-height:1.35;
  font-weight:600;
}
@media(max-width:780px){
  .how-to-play{padding:18px!important;border-radius:26px!important;margin-top:22px!important;}
  .how-to-rules{grid-template-columns:1fr;gap:10px;}
  .how-rule-card{display:grid;grid-template-columns:150px minmax(0,1fr);align-items:center;gap:13px;padding:12px;}
  .how-example{margin-bottom:0;}
  .how-rule-copy strong{font-size:15px;}
  .how-rule-copy span{font-size:12px;}
}
@media(max-width:420px){
  .how-rule-card{grid-template-columns:1fr;}
  .how-example{max-width:210px;width:100%;}
}


/* Clean compact Pawdle scoring guide - secondary to Top Players */
.score-guide{
  margin-top:18px!important;
  padding-top:16px!important;
  border-top:1px solid rgba(244,207,138,.15)!important;
}
.score-guide-title{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  margin:0 0 12px!important;
  color:rgba(255,237,200,.78)!important;
  font-size:11px!important;
  font-weight:850!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
}
.score-guide-title::before,.score-guide-title::after{
  content:"";
  height:1px;
  flex:1;
  max-width:70px;
  background:linear-gradient(90deg,transparent,rgba(244,207,138,.24),transparent);
}
.score-sequence.score-lines{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  column-gap:18px!important;
  row-gap:0!important;
  margin:0!important;
  padding:12px 16px!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(255,236,195,.055),rgba(255,236,195,.022))!important;
  border:1px solid rgba(244,207,138,.12)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.score-sequence.score-lines .score-line{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  min-height:0!important;
  padding:8px 0!important;
  border-radius:0!important;
  background:transparent!important;
  border:0!important;
  border-bottom:1px solid rgba(244,207,138,.095)!important;
  color:rgba(255,239,211,.72)!important;
  font-size:13px!important;
  font-weight:750!important;
  box-shadow:none!important;
}
.score-sequence.score-lines .score-line:nth-last-child(-n+2){
  border-bottom:0!important;
}
.score-sequence.score-lines .score-line span{
  display:block!important;
  white-space:nowrap!important;
  overflow:visible!important;
  text-overflow:clip!important;
  letter-spacing:.01em!important;
}
.score-sequence.score-lines .score-line strong{
  font-family:inherit!important;
  color:#f4cf8a!important;
  font-size:13px!important;
  line-height:1!important;
  white-space:nowrap!important;
  font-weight:900!important;
}
.score-sequence.score-lines .score-line:first-child{
  color:rgba(255,239,211,.84)!important;
}
.score-sequence.score-lines .score-line:first-child strong{
  color:#ffdc93!important;
}
@media(max-width:520px){
  .score-sequence.score-lines{
    grid-template-columns:1fr!important;
    padding:10px 14px!important;
  }
  .score-sequence.score-lines .score-line:nth-last-child(-n+2){
    border-bottom:1px solid rgba(244,207,138,.095)!important;
  }
  .score-sequence.score-lines .score-line:last-child{border-bottom:0!important;}
  .score-guide{margin-top:14px!important;padding-top:12px!important;}
}



/* Final tidy pass: header alignment + clean scoring rows */
.pawdle-title-group{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  text-align:center!important;
  width:100%!important;
}
.pawdle-title-group .pawdle-title{
  display:block!important;
  margin:0!important;
  line-height:.98!important;
  max-width:100%!important;
}
.pawdle-title-group .pawdle-subtitle{
  display:block!important;
  width:max-content!important;
  max-width:min(620px, calc(100vw - 58px))!important;
  margin:0 auto!important;
  box-sizing:border-box!important;
  text-align:center!important;
  line-height:1.35!important;
}
@media(min-width:781px){
  .pawdle-title{font-size:clamp(48px,5.1vw,72px)!important;}
  .pawdle-card{padding-top:42px!important;}
}
@media(max-width:780px){
  .pawdle-title-group{gap:8px!important;}
  .pawdle-title-group .pawdle-subtitle{font-size:13px!important;padding:8px 12px!important;}
}

.score-guide{
  margin-top:18px!important;
  padding-top:14px!important;
}
.score-sequence.score-lines{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:0 22px!important;
  padding:14px 18px!important;
  border-radius:22px!important;
  background:linear-gradient(180deg,rgba(255,236,195,.055),rgba(255,236,195,.018))!important;
  border:1px solid rgba(244,207,138,.14)!important;
}
.score-sequence.score-lines .score-line{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:14px!important;
  min-height:34px!important;
  padding:7px 0!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  border-bottom:1px solid rgba(244,207,138,.10)!important;
}
.score-sequence.score-lines .score-line > span,
.score-sequence.score-lines .score-line span{
  display:inline!important;
  min-height:0!important;
  height:auto!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:rgba(255,239,211,.76)!important;
  font-size:13px!important;
  font-weight:750!important;
  line-height:1!important;
  white-space:nowrap!important;
  overflow:visible!important;
  text-overflow:clip!important;
}
.score-sequence.score-lines .score-line strong{
  display:inline!important;
  color:#f4cf8a!important;
  font-family:inherit!important;
  font-size:13px!important;
  font-weight:900!important;
  line-height:1!important;
  white-space:nowrap!important;
  padding:0!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.score-sequence.score-lines .score-line:nth-last-child(-n+2){border-bottom:0!important;}
@media(max-width:520px){
  .score-sequence.score-lines{grid-template-columns:1fr!important;padding:12px 16px!important;}
  .score-sequence.score-lines .score-line:nth-last-child(-n+2){border-bottom:1px solid rgba(244,207,138,.10)!important;}
  .score-sequence.score-lines .score-line:last-child{border-bottom:0!important;}
}

/* ── Leaderboard name modal ──────────────────────────────────────── */
.pawdle-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 4, 2, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFadeIn 0.22s ease;
}
.pawdle-modal[hidden] { display: none; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pawdle-modal-box {
  background: linear-gradient(180deg, rgba(44, 24, 12, 0.92), rgba(20, 10, 5, 0.96));
  border: 1px solid rgba(244, 207, 138, 0.32);
  border-radius: 28px;
  padding: 36px 28px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 236, 194, 0.10);
  animation: modalSlideUp 0.28s cubic-bezier(0.22, 0.75, 0.2, 1);
}
@keyframes modalSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.pawdle-modal-paw {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}
.pawdle-modal-title {
  font-family: "Bree Serif", Georgia, serif;
  color: #f4cf8a;
  font-size: 26px;
  margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.pawdle-modal-sub {
  color: rgba(255, 236, 199, 0.76);
  font-size: 14px;
  margin: 0 0 20px;
}
.pawdle-modal-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 239, 203, 0.10);
  border: 1.5px solid rgba(244, 207, 138, 0.35);
  border-radius: 14px;
  color: #fff4d7;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 16px;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.18s;
}
.pawdle-modal-input::placeholder { color: rgba(255, 236, 199, 0.38); }
.pawdle-modal-input:focus { border-color: rgba(244, 207, 138, 0.72); }
.pawdle-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.pawdle-back-top {
  display: block; width: fit-content; margin: 20px auto 20px;
  padding: 13px 28px; background: #6B5540; border-radius: 999px;
  color: #F5EDD8; font-weight: 500; font-size: 0.9375rem; letter-spacing: 0.02em;
  text-decoration: none; text-align: center;
  transition: background 0.18s, transform 0.12s;
  position: relative; z-index: 3;
}
.pawdle-back-top:hover { background: #4a3a2a; transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  .pawdle-tile.shake,
  .pawdle-tile.active-cursor,
  .pawdle-modal,
  .pawdle-modal-box { animation: none; }
}
