/* =========================================================================
   DDP Pound House — Global theme styles
   Matches /home/ landing page tokens so the whole site feels like one system.
   ========================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root,
.ddp-root {
  --red:#dd3333; --red-2:#b51d1d; --red-3:#8b0000;
  --blue:#1e73be; --blue-2:#0d3d73; --blue-3:#061d3a;
  --ink:#0a0f1a;  --ink-2:#05080f;
  --bone:#f2efe7;
  --text:#ffffff;
  --muted:#9aa4c0;
  --line:rgba(255,255,255,.08);

  --script:'Lobster',cursive;
  --display:'Bungee','Oswald',sans-serif;
  --head:'Oswald','Lexend Deca',sans-serif;
  --body:'Lexend Deca',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --graffiti:'Permanent Marker',cursive;

  --radius:16px;
  --radius-sm:10px;
  --radius-pill:999px;

  --max:1400px;
}

/* ---------- RESET / BASE ---------- */
*,*::before,*::after { box-sizing:border-box; }
html,body { margin:0; padding:0; }
body.ddp-root {
  color:var(--text);
  font-family:var(--body);
  background:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  min-height:100vh;
}
body.ddp-root img { max-width:100%; height:auto; display:block; }
body.ddp-root a { color:inherit; text-decoration:none; }
body.ddp-root a:hover { color:#fff; }
body.ddp-root button { font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
body.ddp-root h1,h2,h3,h4,h5,h6 { font-family:var(--head); letter-spacing:.02em; color:#fff; }

.screen-reader-text { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.ddp-skip-link { position:absolute; left:-9999px; top:0; background:var(--red); color:#fff; padding:10px 14px; z-index:999; border-radius:0 0 8px 0; font-weight:700; }
.ddp-skip-link:focus { left:0; }

/* ---------- SCROLL PROGRESS BAR ---------- */
.ddp-scroll-bar {
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--red),var(--blue));
  z-index:100; transition:width .1s linear;
}

/* ---------- NAV (matches /home/ 1:1) ---------- */
.ddp-nav {
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg,rgba(10,15,26,.96),rgba(10,15,26,.82));
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.ddp-nav::before {
  content:""; display:block; height:4px;
  background:linear-gradient(90deg,var(--red) 0 33.33%,#fff 33.33% 66.66%,var(--blue) 66.66% 100%);
}
.ddp-nav-inner {
  max-width:var(--max); margin:0 auto;
  display:flex !important; align-items:center; gap:20px;
  padding:14px 24px;
  flex-wrap:nowrap !important;
  width:100%;
}
.ddp-nav-logo {
  display:flex !important; align-items:center; gap:10px;
  flex:0 0 auto !important;
  max-width:220px;
  max-height:100px;
  overflow:hidden;
}
.ddp-nav-logo img {
  height:100px !important;
  width:auto !important;
  max-width:100% !important;
  max-height:100px !important;
  object-fit:contain;
  display:block;
}

.ddp-nav-menu {
  display:flex !important; align-items:center; gap:6px;
  margin-left:auto !important;
  flex:1 1 auto !important;
  justify-content:flex-end !important;
  font-family:var(--head); text-transform:uppercase; font-weight:600;
  letter-spacing:.14em; font-size:.82rem;
}
.ddp-nav-cart { flex:0 0 auto !important; margin-left:12px; }
.ddp-nav-burger { flex:0 0 auto !important; }
.ddp-nav-menu a {
  display:inline-block; padding:10px 14px; border-radius:var(--radius-pill);
  color:#e6e9f2; transition:color .2s ease, background .2s ease;
}
.ddp-nav-menu a:hover { color:#fff; background:rgba(255,255,255,.06); }
.ddp-nav-menu a.is-accent {
  position:relative;
  padding:15px 32px; font-size:1.02rem; font-weight:800; letter-spacing:.2em;
  background:linear-gradient(135deg,var(--red),var(--red-2));
  color:#fff;
  box-shadow:0 10px 26px rgba(221,51,51,.5),0 0 0 2px rgba(255,255,255,.1) inset;
  transform-origin:center;
  animation:shopShake 3.2s cubic-bezier(.36,.07,.19,.97) infinite,
            shopPulse 2s ease-in-out infinite;
}
.ddp-nav-menu a.is-accent::before {
  content:""; position:absolute; inset:-6px; border-radius:var(--radius-pill); z-index:-1;
  background:linear-gradient(135deg,var(--red),var(--red-2));
  opacity:0; filter:blur(10px);
  animation:shopHalo 2s ease-in-out infinite;
}
.ddp-nav-menu a.is-accent:hover {
  transform:translateY(-2px) scale(1.06);
  box-shadow:0 18px 40px rgba(221,51,51,.7);
  animation-play-state:paused;
}
.ddp-nav-menu a.is-accent:hover::before { animation-play-state:paused; opacity:.55; }

@keyframes shopShake {
  0%,82%,100% { transform:translate(0,0) rotate(0) scale(1); }
  84% { transform:translate(-2px,0) rotate(-4deg) scale(1.08); }
  86% { transform:translate(3px,0) rotate(4deg) scale(1.08); }
  88% { transform:translate(-3px,0) rotate(-4deg) scale(1.08); }
  90% { transform:translate(3px,0) rotate(3deg) scale(1.06); }
  92% { transform:translate(-2px,0) rotate(-2deg) scale(1.04); }
  94% { transform:translate(1px,0) rotate(1deg) scale(1.02); }
  96% { transform:translate(0,0) rotate(0) scale(1); }
}
@keyframes shopPulse {
  0%,100% { box-shadow:0 10px 26px rgba(221,51,51,.45),0 0 0 2px rgba(255,255,255,.1) inset,0 0 0 0 rgba(221,51,51,.6); }
  50%     { box-shadow:0 14px 32px rgba(221,51,51,.7),0 0 0 2px rgba(255,255,255,.15) inset,0 0 0 8px rgba(221,51,51,0); }
}
@keyframes shopHalo {
  0%,100% { opacity:0; transform:scale(.95); }
  50%     { opacity:.4; transform:scale(1.08); }
}

.ddp-nav-cart {
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  margin-left:6px; transition:background .2s ease;
}
.ddp-nav-cart:hover { background:rgba(255,255,255,.14); }
.ddp-nav-cart svg { width:20px; height:20px; }
.ddp-nav-cart .badge {
  position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 5px;
  background:var(--red); color:#fff; border-radius:999px;
  font-family:var(--head); font-size:.66rem; font-weight:700;
  display:grid; place-items:center;
}

.ddp-nav-burger { display:none; margin-left:auto; width:44px; height:44px; place-items:center; }
.ddp-nav-burger span { display:block; width:24px; height:2px; background:#fff; position:relative; transition:all .3s ease; }
.ddp-nav-burger span::before,
.ddp-nav-burger span::after {
  content:""; position:absolute; left:0; width:24px; height:2px; background:#fff;
  transition:all .3s ease;
}
.ddp-nav-burger span::before { top:-8px; }
.ddp-nav-burger span::after  { top:8px; }
.ddp-nav[data-open="true"] .ddp-nav-burger span { background:transparent; }
.ddp-nav[data-open="true"] .ddp-nav-burger span::before { top:0; transform:rotate(45deg); }
.ddp-nav[data-open="true"] .ddp-nav-burger span::after  { top:0; transform:rotate(-45deg); }

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

/* ---------- BUTTONS ---------- */
.ddp-btn {
  position:relative; display:inline-flex; align-items:center; gap:10px;
  padding:16px 34px; border-radius:var(--radius-pill); overflow:hidden;
  font-family:var(--head); font-weight:700; text-transform:uppercase;
  letter-spacing:.18em; font-size:.88rem;
  color:#fff;
  background:linear-gradient(135deg,var(--blue-2),var(--blue));
  box-shadow:0 10px 26px rgba(30,115,190,.4);
  transition:transform .25s ease, box-shadow .25s ease;
}
.ddp-btn svg { width:18px; height:18px; transition:transform .25s ease; }
.ddp-btn:hover { transform:translateY(-3px); color:#fff; box-shadow:0 18px 40px rgba(30,115,190,.6); }
.ddp-btn:hover svg { transform:translateX(4px); }

.ddp-btn--red {
  background:linear-gradient(135deg,var(--red),var(--red-2));
  box-shadow:0 10px 26px rgba(221,51,51,.5);
}
.ddp-btn--red:hover { box-shadow:0 18px 40px rgba(221,51,51,.7); }

.ddp-btn--ghost {
  background:transparent;
  border:2px solid rgba(255,255,255,.2);
  box-shadow:none;
}
.ddp-btn--ghost:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.4); box-shadow:none; }

/* ---------- PAGE WRAPPERS ---------- */
.ddp-main { display:block; }

.ddp-page {
  background:
    radial-gradient(900px 500px at 80% 10%,rgba(30,115,190,.12),transparent 60%),
    radial-gradient(900px 500px at 20% 90%,rgba(221,51,51,.12),transparent 60%),
    linear-gradient(180deg,var(--ink) 0%,#000 100%);
  padding:60px 20px 100px;
  min-height:60vh;
}
.ddp-page__inner { max-width:1100px; margin:0 auto; }

.ddp-page__head { text-align:center; margin:0 0 50px; }
.ddp-page__kicker,
.ddp-kicker {
  font-family:var(--head); text-transform:uppercase; letter-spacing:.5em;
  font-size:.78rem; color:var(--muted); margin:0 0 14px; font-weight:600;
}
.ddp-page__kicker::before,
.ddp-page__kicker::after {
  content:""; display:inline-block; width:28px; height:2px; background:currentColor;
  vertical-align:middle; margin:0 12px; opacity:.6;
}
.ddp-page__title {
  font-family:var(--display); text-transform:uppercase; letter-spacing:-.01em;
  font-size:clamp(2.2rem,5vw,4rem); line-height:.95; margin:0 0 20px;
  text-shadow:0 8px 30px rgba(0,0,0,.55);
}
.ddp-page__title::after {
  content:""; display:block; margin:18px auto 0; width:120px; height:4px; border-radius:3px;
  background:linear-gradient(90deg,var(--red) 0 50%,var(--blue) 50% 100%);
}

.ddp-page__hero {
  position:relative; overflow:hidden;
  max-height:55vh; min-height:280px;
}
.ddp-page__hero img { width:100%; height:100%; object-fit:cover; }
.ddp-page__hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(10,15,26,.2) 0%,rgba(10,15,26,.8) 100%);
}
.ddp-page__hero-title {
  position:absolute; left:0; right:0; bottom:0; padding:40px 24px;
  text-align:center;
}
.ddp-page__hero-title h1 {
  font-family:var(--display); text-transform:uppercase;
  font-size:clamp(2rem,5vw,3.6rem); line-height:1; margin:0;
  text-shadow:0 6px 20px rgba(0,0,0,.8);
}

.ddp-page__content {
  max-width:1100px; margin:0 auto;
  font-size:1.05rem; line-height:1.8; color:#d7ddee;
}
.ddp-page__content p  { margin:0 0 18px; }
.ddp-page__content h2 { font-family:var(--display); text-transform:uppercase; font-size:1.9rem; margin:42px 0 16px; }
.ddp-page__content h3 { font-family:var(--head); text-transform:uppercase; font-size:1.4rem; margin:32px 0 14px; letter-spacing:.06em; }
.ddp-page__content a  { color:var(--red); border-bottom:1px solid rgba(221,51,51,.4); }
.ddp-page__content a:hover { color:#fff; border-bottom-color:#fff; }
.ddp-page__content ul,
.ddp-page__content ol { margin:0 0 18px; padding-left:22px; }
.ddp-page__content li { margin:0 0 8px; }
.ddp-page__content blockquote {
  margin:24px 0; padding:20px 26px; border-left:4px solid var(--red);
  background:rgba(221,51,51,.06); border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-style:italic; color:#fff;
}
.ddp-page__content img { border-radius:var(--radius-sm); margin:16px 0; }
.ddp-page__content table { width:100%; border-collapse:collapse; margin:20px 0; }
.ddp-page__content th,
.ddp-page__content td { padding:12px; border:1px solid var(--line); text-align:left; }
.ddp-page__content th { background:rgba(255,255,255,.04); font-family:var(--head); text-transform:uppercase; font-size:.85rem; letter-spacing:.06em; }

/* ---------- PAGE LIST (blog / archive) ---------- */
.ddp-page--list .ddp-page__body {
  display:grid; grid-template-columns:1fr 300px; gap:40px;
  max-width:1200px; margin:0 auto;
}
.ddp-post-list { display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.ddp-post-card {
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease;
}
.ddp-post-card:hover { transform:translateY(-4px); border-color:rgba(221,51,51,.4); }
.ddp-post-card__thumb { display:block; aspect-ratio:16/9; overflow:hidden; }
.ddp-post-card__thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.ddp-post-card:hover .ddp-post-card__thumb img { transform:scale(1.05); }
.ddp-post-card__title { margin:18px 20px 8px; font-size:1.3rem; }
.ddp-post-card__title a { color:#fff; }
.ddp-post-card__title a:hover { color:var(--red); }
.ddp-post-card__meta { margin:0 20px 12px; font-size:.82rem; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; }
.ddp-post-card__excerpt { margin:0 20px 20px; color:#d7ddee; line-height:1.7; font-size:.95rem; }

.ddp-pagination { margin:40px 0 0; text-align:center; }
.ddp-pagination .page-numbers {
  display:inline-block; margin:0 4px; padding:10px 16px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,.05); color:#e6e9f2; font-family:var(--head); font-weight:600;
  text-transform:uppercase; letter-spacing:.1em; font-size:.85rem;
  transition:background .2s ease, color .2s ease;
}
.ddp-pagination .page-numbers:hover,
.ddp-pagination .page-numbers.current { background:var(--red); color:#fff; }

/* ---------- SINGLE POST ---------- */
.ddp-single-post__meta {
  max-width:760px; margin:40px auto 0;
  padding:20px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  color:var(--muted); font-size:.88rem; text-transform:uppercase; letter-spacing:.1em;
  display:flex; gap:20px; flex-wrap:wrap;
}
.ddp-single-post__meta a { color:var(--red); }

.ddp-postnav {
  max-width:760px; margin:30px auto 0; display:flex; gap:20px; justify-content:space-between;
}
.ddp-postnav a { color:#e6e9f2; font-family:var(--head); text-transform:uppercase; letter-spacing:.1em; font-size:.85rem; }
.ddp-postnav a:hover { color:var(--red); }

/* ---------- COMMENTS ---------- */
.ddp-comments { max-width:760px; margin:60px auto 0; }
.ddp-comments__title { font-family:var(--display); text-transform:uppercase; font-size:1.6rem; margin:0 0 24px; }
.ddp-comments__list { list-style:none; padding:0; }
.ddp-comments .comment-body {
  background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px; margin:0 0 16px;
}
.ddp-comments .comment-meta { color:var(--muted); font-size:.85rem; }
.ddp-comments input[type="text"],
.ddp-comments input[type="email"],
.ddp-comments input[type="url"],
.ddp-comments textarea {
  width:100%; padding:14px 16px; margin:0 0 14px;
  background:rgba(255,255,255,.04); border:1px solid var(--line); border-radius:var(--radius-sm);
  color:#fff; font:inherit;
}
.ddp-comments input:focus, .ddp-comments textarea:focus { outline:none; border-color:var(--red); background:rgba(255,255,255,.06); }

/* ---------- SIDEBARS / WIDGETS ---------- */
.ddp-page__sidebar,
.ddp-shop__sidebar { min-width:0; }
.ddp-widget {
  background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:var(--radius);
  padding:22px; margin:0 0 24px;
}
.ddp-widget__title {
  font-family:var(--head); text-transform:uppercase; letter-spacing:.14em; font-size:.95rem;
  margin:0 0 14px; padding-bottom:10px; border-bottom:2px solid var(--red);
  display:inline-block;
}
.ddp-widget ul { list-style:none; padding:0; margin:0; }
.ddp-widget ul li { margin:0 0 8px; }
.ddp-widget ul li a { color:#e6e9f2; }
.ddp-widget ul li a:hover { color:var(--red); }

/* ---------- SEARCH FORM ---------- */
.ddp-search {
  display:flex; gap:0; align-items:stretch; max-width:480px;
  background:rgba(255,255,255,.04); border:1px solid var(--line); border-radius:var(--radius-pill); overflow:hidden;
}
.ddp-search__input {
  flex:1; background:transparent; border:0; padding:14px 20px; color:#fff; font:inherit; outline:none;
}
.ddp-search__input::placeholder { color:var(--muted); }
.ddp-search__btn {
  padding:0 20px; background:var(--red); color:#fff; display:grid; place-items:center;
  transition:background .2s ease;
}
.ddp-search__btn:hover { background:var(--red-2); }
.ddp-search__btn svg { width:20px; height:20px; }

/* ---------- 404 ---------- */
.ddp-404 {
  min-height:70vh; display:grid; place-items:center;
  background:
    radial-gradient(800px 400px at 50% 40%,rgba(221,51,51,.2),transparent 60%),
    linear-gradient(180deg,var(--ink) 0%,#000 100%);
  padding:40px 20px;
}
.ddp-404__inner { text-align:center; max-width:600px; }
.ddp-404__inner h1 {
  font-family:var(--display); text-transform:uppercase;
  font-size:clamp(3rem,10vw,6rem); line-height:.95; margin:0 0 20px;
  text-shadow:0 10px 40px rgba(221,51,51,.5);
}
.ddp-404__copy { font-size:1.1rem; color:#d7ddee; margin:0 0 30px; line-height:1.7; }
.ddp-404__cta { display:flex; gap:14px; justify-content:center; margin:0 0 40px; flex-wrap:wrap; }
.ddp-404__search .ddp-search { margin:0 auto; }

/* ---------- DONATION BANNER (reused from homepage) ---------- */
.ddp-story__donate {
  display:inline-flex; align-items:center; gap:14px;
  padding:14px 22px; border-radius:16px;
  background:linear-gradient(90deg,rgba(221,51,51,.12),rgba(30,115,190,.12));
  border:1px solid rgba(255,255,255,.08);
}
.ddp-story__donate svg { width:22px; height:22px; color:var(--red); flex:0 0 auto; }
.ddp-story__donate span { font-size:.95rem; color:#e6e9f2; }
.ddp-story__donate b { color:#fff; }

/* ---------- FOOTER (matches /home/ 1:1) ---------- */
.ddp-footer {
  position:relative;
  background:
    linear-gradient(180deg,#000 0%,var(--ink-2) 100%);
  padding:60px 20px 30px;
  border-top:1px solid var(--line);
}
.ddp-footer::before {
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--red) 0 33.33%,#fff 33.33% 66.66%,var(--blue) 66.66% 100%);
}
.ddp-footer__inner {
  max-width:var(--max); margin:0 auto;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px;
}
.ddp-footer__brand img {
  height:60px !important;
  max-height:60px !important;
  width:auto !important;
  max-width:260px;
  margin:0 0 16px;
  object-fit:contain;
}
.ddp-footer__brand p { color:#c7ceda; line-height:1.7; margin:0 0 20px; max-width:380px; font-size:.95rem; }
.ddp-footer__socials { display:flex; gap:10px; }
.ddp-footer__socials a {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.05); border:1px solid var(--line);
  display:grid; place-items:center; color:#e6e9f2;
  transition:background .2s ease, color .2s ease;
}
.ddp-footer__socials a:hover { background:var(--red); color:#fff; border-color:var(--red); }
.ddp-footer__socials svg { width:17px; height:17px; }
.ddp-footer__col h4 {
  font-family:var(--head); text-transform:uppercase; letter-spacing:.14em; font-size:.9rem;
  margin:0 0 14px; padding-bottom:10px; border-bottom:2px solid var(--red); display:inline-block;
}
.ddp-footer__col a { display:block; padding:6px 0; color:#c7ceda; font-size:.92rem; transition:color .2s ease; }
.ddp-footer__col a:hover { color:#fff; }
.ddp-footer__legal {
  max-width:var(--max); margin:40px auto 0; padding:20px 0 0;
  border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:20px;
  color:var(--muted); font-size:.85rem; flex-wrap:wrap;
}
.ddp-footer__credit {
  color:#cfd4e1; font-weight:600; text-decoration:none;
  background:linear-gradient(90deg,var(--red),var(--blue));
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  border-bottom:1px solid rgba(255,255,255,.15);
  transition:border-color .25s ease;
}
.ddp-footer__credit:hover { border-bottom-color:#fff; }

/* ---------- REVEAL ON SCROLL ---------- */
.ddp-reveal {
  opacity:0; transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.ddp-reveal.is-visible { opacity:1; transform:translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:960px) {
  .ddp-nav-menu { display:none; }
  .ddp-nav-burger { display:grid; }
  .ddp-nav-mobile {
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:rgba(10,15,26,.98); backdrop-filter:blur(12px);
    padding:20px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    flex-direction:column; gap:0;
  }
  .ddp-nav[data-open="true"] .ddp-nav-mobile { display:flex; }
  .ddp-nav-mobile a {
    display:block; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.06);
    font-family:var(--head); text-transform:uppercase; letter-spacing:.14em; font-size:.9rem;
  }
  .ddp-nav-cart { margin-left:auto; margin-right:8px; }
  .ddp-nav-logo img { height:44px; }

  .ddp-page__body,
  .ddp-page--list .ddp-page__body { grid-template-columns:1fr; }
  .ddp-post-list { grid-template-columns:1fr; }
  .ddp-footer__inner { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px) {
  .ddp-footer__inner { grid-template-columns:1fr; }
  .ddp-btn { padding:14px 22px; font-size:.8rem; }
  .ddp-page { padding:40px 16px 70px; }
  .ddp-page__content { font-size:1rem; }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}

/* =========================================================================
   LIGHT-SURFACE MODE — FRONT PAGE
   Same warm-bone surface as .ddp-shop, scoped to body.home .ddp-page so
   the front page / slider area sits on cream while blog, archives, posts,
   and 404 stay on the dark graffiti surface.
   Header (.ddp-nav) and footer (.ddp-footer) untouched.
   ========================================================================= */
body.home .ddp-page {
  --surface:        #f2efe7;
  --surface-2:      #ffffff;
  --surface-3:      #ebe7dc;
  --surface-text:   #0a0f1a;
  --surface-muted:  #5a6275;
  --surface-line:   rgba(10,15,26,.12);
  --surface-shadow: 0 6px 18px rgba(10,15,26,.08);

  position: relative;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(30,115,190,.10), transparent 60%),
    radial-gradient(900px 500px at 20% 90%, rgba(221,51,51,.10), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, #ece8de 100%);
  color: var(--surface-text);
}
/* Concrete-wall noise texture on front page surface (matches .ddp-shop) */
body.home .ddp-page::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .04  0 0 0 0 .06  0 0 0 0 .1  0 0 0 .18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  z-index: 0;
}
body.home .ddp-page > * { position: relative; z-index: 1; }

/* Graffiti stencil card treatment for any Woo products embedded on the
   front page (slider, featured products shortcode, etc.) — matches the
   shop grid 1:1. */
body.home .ddp-page .woocommerce ul.products li.product {
  background: transparent !important;
  background-color: transparent !important;
  border: 2px solid var(--surface-text) !important;
  border-radius: var(--radius) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.35),
    0 3px 0 0 var(--surface-text),
    0 10px 22px rgba(10,15,26,.08) !important;
  overflow: visible !important;
  position: relative;
  isolation: isolate;
}
body.home .ddp-page .woocommerce ul.products li.product::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red) 0 33.33%, #fff 33.33% 66.66%, var(--blue) 66.66% 100%);
  z-index: 3; pointer-events: none;
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
body.home .ddp-page .woocommerce ul.products li.product:hover {
  transform: translateY(-6px) rotate(-.35deg) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.4),
    0 3px 0 0 var(--surface-text),
    0 0 0 6px rgba(221,51,51,.10),
    0 0 0 10px rgba(30,115,190,.08),
    0 22px 42px rgba(10,15,26,.18) !important;
}
body.home .ddp-page .woocommerce ul.products li.product .wp-post-image,
body.home .ddp-page .woocommerce ul.products li.product img {
  background: transparent !important;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 14px rgba(10,15,26,.18));
}

body.home .ddp-page h1,
body.home .ddp-page h2,
body.home .ddp-page h3,
body.home .ddp-page h4,
body.home .ddp-page h5,
body.home .ddp-page h6 { color: var(--surface-text); }

body.home .ddp-page__title { color: var(--surface-text); text-shadow: none; }
body.home .ddp-page__kicker,
body.home .ddp-kicker { color: var(--red); }
body.home .ddp-page__hero-title h1 { color: var(--surface-text); text-shadow: 0 2px 10px rgba(255,255,255,.4); }
body.home .ddp-page__hero-overlay {
  background: linear-gradient(180deg, rgba(242,239,231,0) 0%, rgba(242,239,231,.7) 100%);
}

body.home .ddp-page__content { color: #2f3647; }
body.home .ddp-page__content a { color: var(--red-2); border-bottom-color: rgba(181,29,29,.4); }
body.home .ddp-page__content a:hover { color: var(--ink); border-bottom-color: var(--ink); }
body.home .ddp-page__content blockquote {
  background: rgba(221,51,51,.06);
  color: var(--surface-text);
  border-left-color: var(--red);
}
body.home .ddp-page__content th { background: var(--surface-3); color: var(--surface-text); }
body.home .ddp-page__content td,
body.home .ddp-page__content th { border-color: var(--surface-line); }

/* Product images dropped into the front page (sliders, featured blocks,
   Woo shortcodes) get the same multiply treatment so white canvases
   dissolve into the bone background. */
body.home .ddp-page img,
body.home .ddp-page .woocommerce ul.products li.product img,
body.home .ddp-page .wp-post-image {
  mix-blend-mode: multiply;
  background: transparent !important;
}
/* Don't multiply logos / icons inside cards — cards are white so multiply
   is a visual no-op there, but leaving this hook if you later wrap a card
   variant that needs it. */

/* Post cards on front page (if any are rendered) */
body.home .ddp-page .ddp-post-card {
  background: var(--surface-2);
  border-color: var(--surface-line);
  box-shadow: var(--surface-shadow);
}
body.home .ddp-page .ddp-post-card:hover { border-color: rgba(221,51,51,.45); }
body.home .ddp-page .ddp-post-card__title a { color: var(--surface-text); }
body.home .ddp-page .ddp-post-card__title a:hover { color: var(--red-2); }
body.home .ddp-page .ddp-post-card__meta { color: var(--surface-muted); }
body.home .ddp-page .ddp-post-card__excerpt { color: #2f3647; }

/* Widgets / sidebars on the front page */
body.home .ddp-page .ddp-widget {
  background: var(--surface-2);
  border-color: var(--surface-line);
  box-shadow: var(--surface-shadow);
}
body.home .ddp-page .ddp-widget ul li a { color: var(--surface-text); }
body.home .ddp-page .ddp-widget ul li a:hover { color: var(--red-2); }

/* Pagination on front page (if listing is shown) */
body.home .ddp-page .ddp-pagination .page-numbers {
  background: var(--surface-2); color: var(--surface-text);
  box-shadow: 0 2px 6px rgba(10,15,26,.06);
}
body.home .ddp-page .ddp-pagination .page-numbers:hover,
body.home .ddp-page .ddp-pagination .page-numbers.current { background: var(--red); color:#fff; }

/* Search field on the front page */
body.home .ddp-page .ddp-search {
  background: var(--surface-2);
  border-color: var(--surface-line);
  box-shadow: var(--surface-shadow);
}
body.home .ddp-page .ddp-search__input { color: var(--surface-text); }
body.home .ddp-page .ddp-search__input::placeholder { color: var(--surface-muted); }

/* Donation banner shortcode if dropped on front page */
body.home .ddp-page .ddp-story__donate {
  background: linear-gradient(90deg, rgba(221,51,51,.08), rgba(30,115,190,.08));
  border-color: var(--surface-line);
}
body.home .ddp-page .ddp-story__donate span { color: #2f3647; }
body.home .ddp-page .ddp-story__donate b { color: var(--ink); }
