/* ==========================================================================
   키친테리어 · 싱크대교체 — visual-designer-INSIDE-V3 (Stage 5)
   brand_tier: standard / industry_mood: utility (각진, 산세리프 정자체)
   ========================================================================== */

:root {
  --dp-primary:    #17140F;
  --dp-primary-2:  #2B2620;
  --dp-primary-3:  #201C16;
  --dp-primary-d:  #0D0B08;
  --dp-primary-d-rgb: 23,20,15;

  --dp-accent:      #A6805A;
  --dp-accent-soft: #D8C3A8;

  --dp-bg-soft: #F6F3ED;
  --dp-bg-warm: #EFEAE0;
  --dp-bg-dark: var(--dp-primary);

  --dp-border:      #DAD3C4;
  --dp-border-soft: #E7E2D6;

  --dp-text:       #1A1A1A;
  --dp-text-sub:   #4A4742;
  --dp-text-muted: #7A7670;

  --dp-radius: 0px;
  --dp-shadow-sm: 0 2px 8px rgba(23,20,15,.08);
  --dp-shadow-md: 0 12px 32px rgba(23,20,15,.12);
  --dp-shadow-lg: 0 24px 60px rgba(23,20,15,.18);
  --dp-ease: cubic-bezier(.22,1,.36,1);

  --dp-font-heading: 'Wanted Sans Variable', 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
  --dp-font-body:    'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;

  --dp-fs-display: clamp(3rem, 7.2vw, 6.2rem);
  --dp-fs-h1: clamp(2.1rem, 4.8vw, 3.4rem);
  --dp-fs-h2: clamp(1.75rem, 3.6vw, 2.55rem);
  --dp-fs-h3: clamp(1.15rem, 2vw, 1.4rem);

  --dp-max-w: 1200px;
  --dp-gutter: clamp(20px, 4vw, 40px);
  --dp-sec-pad: clamp(72px, 11vw, 128px);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button, dt, dd, summary {
  word-break: keep-all;
  overflow-wrap: break-word;
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--dp-font-body);
  font-size: 19px;
  line-height: 1.85;
  color: var(--dp-text);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--dp-font-heading); font-weight: 700; font-style: normal; line-height: 1.3; letter-spacing: -.02em; margin: 0 0 .5em; color: var(--dp-text); }
h1 { font-size: var(--dp-fs-h1); }
h2 { font-size: var(--dp-fs-h2); }
h3 { font-size: var(--dp-fs-h3); }
p { margin: 0 0 1em; color: var(--dp-text-sub); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; width: 100%; }

/* ---------- 4:3 이미지 박스 (wmm_img()/wmm_placeholder() 공용 래퍼) ----------
   aspect-ratio CSS 속성에 의존하지 않는다 — 구형/제한된 렌더러(자동 스크린샷 도구 등)에서
   aspect-ratio가 무시되면 이미지가 세로로 길게 깨지는 문제가 있어, padding-top 트릭으로
   박스 높이를 강제한다(모든 렌더러에서 항상 동작). */
.dp-ratio { position: relative; display: block; width: 100%; padding-top: 75%; overflow: hidden; }
.dp-ratio img, .dp-ratio svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--dp-ease); }

a { color: inherit; text-decoration: none; }
a:not(.dp-cta):not(.service-card__link):not(.related-card):not(.hdr-logo) {
  background-image: linear-gradient(var(--dp-accent), var(--dp-accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .3s var(--dp-ease);
}
@media (hover: hover) and (pointer: fine) {
  a:not(.dp-cta):not(.service-card__link):not(.related-card):not(.hdr-logo):hover {
    background-size: 100% 1px;
  }
}

main > article > section,
.sitemap-page-content > section {
  padding-block: var(--dp-sec-pad);
  padding-inline: var(--dp-gutter);
}
main > article > section > *,
.sitemap-page-content > section > * { max-width: var(--dp-max-w); margin-inline: auto; }

/* alternating background rhythm (positional, guarantees no repeats) */
main > article > section:nth-of-type(odd)  { background: #fff; }
main > article > section:nth-of-type(even) { background: var(--dp-bg-soft); }
/* explicit overrides win over the nth-of-type rhythm */
.section--soft { background: var(--dp-bg-soft) !important; }
.section--warm { background: var(--dp-bg-warm) !important; }
.section--dark { background: var(--dp-bg-dark) !important; color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }
.section--accent { background: var(--dp-accent) !important; color: var(--dp-primary); }
.section--accent h2, .section--accent h3 { color: var(--dp-primary); }
.section--accent p { color: rgba(23,20,15,.75); }
.section--accent .dp-eyebrow { color: var(--dp-primary); }

.section-head { max-width: 720px; margin-inline: 0 auto; text-align: left; margin-bottom: clamp(28px, 4vw, 48px); }
.dp-eyebrow {
  display: inline-block;
  font-family: var(--dp-font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dp-accent);
  margin-bottom: .8em;
}
.dp-eyebrow--underline { position: relative; padding-bottom: 10px; }
.dp-eyebrow--underline::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--dp-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: dp-underline-grow 1.1s var(--dp-ease) .2s forwards;
}
@keyframes dp-underline-grow { to { transform: scaleX(1); } }

/* ---------- reveal (JS: main.js IntersectionObserver) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--dp-ease), transform .7s var(--dp-ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .06s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; }
.reveal-d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dp-eyebrow--underline::after { animation: none; transform: scaleX(1); }
}

/* ---------- scroll progress ---------- */
.dp-scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--dp-accent); z-index: 200; }

/* ---------- CTA buttons ---------- */
.dp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 52px; padding: 16px 32px;
  border-radius: 2px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--dp-ease), background .25s var(--dp-ease), gap .25s var(--dp-ease);
}
.dp-cta::after { content: '→'; transition: transform .25s var(--dp-ease); }
@media (hover: hover) and (pointer: fine) {
  .dp-cta:hover::after { transform: translateX(4px); }
}
.dp-cta--gold { background: var(--dp-accent); color: #fff; }
.dp-cta--gold:hover { background: var(--dp-primary); }
.dp-cta--outline { background: transparent; border-color: currentColor; color: inherit; }
.section--dark .dp-cta--outline { border-color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .dp-cta--outline:hover { background: rgba(0,0,0,.06); }
  .section--dark .dp-cta--outline:hover { background: rgba(255,255,255,.12); }
}

/* ---------- header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--dp-gutter);
  border-bottom: 1px solid var(--dp-border-soft);
  background: #fff;
  position: sticky; top: 0; z-index: 40;
}
.hdr-logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hdr-logo__icon { flex: none; }
.hdr-logo__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.hdr-logo__name { font-family: var(--dp-font-heading); font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hdr-logo__tagline { font-size: .75rem; color: var(--dp-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hdr-nav .dp-cta { min-height: 40px; padding: 10px 20px; font-size: .9rem; }
@media (max-width: 480px) {
  .hdr-logo__tagline { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding-block: clamp(96px, 16vw, 168px) clamp(72px, 11vw, 128px);
  color: #fff;
  background: linear-gradient(100deg, var(--dp-primary) 0%, var(--dp-primary-3) 55%, var(--dp-primary-2) 100%);
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero__lede { max-width: 640px; font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 1.6em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 0; }
.hero .breadcrumb-back { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.2em; }
.hero .breadcrumb-back a { color: rgba(255,255,255,.85); }

/* ---------- hero photo slideshow (main page only) ---------- */
.hero.hero--photo { position: relative; overflow: hidden; background: var(--dp-primary); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; }
.hero__bg-slide:first-child { opacity: 1; }
.hero__bg-slide:nth-child(1) { animation: dp-hero-fade 20s infinite; }
.hero__bg-slide:nth-child(2) { animation: dp-hero-fade 20s infinite; animation-delay: 5s; }
.hero__bg-slide:nth-child(3) { animation: dp-hero-fade 20s infinite; animation-delay: 10s; }
.hero__bg-slide:nth-child(4) { animation: dp-hero-fade 20s infinite; animation-delay: 15s; }
@keyframes dp-hero-fade { 0% { opacity: 1; } 20% { opacity: 1; } 25% { opacity: 0; } 100% { opacity: 0; } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(23,20,15,.86) 0%, rgba(23,20,15,.68) 32%, rgba(23,20,15,.32) 62%, rgba(23,20,15,.12) 100%);
}
.hero__content { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide { animation: none !important; opacity: 0; }
  .hero__bg-slide:first-child { opacity: 1; }
}
.hero--display h1 { font-size: var(--dp-fs-display); font-weight: 900; letter-spacing: -.03em; line-height: .98; }

/* ---------- keyword strip (below hero) ---------- */
.dp-strip { background: var(--dp-primary); overflow: hidden; white-space: nowrap; }
.dp-strip__track { display: inline-flex; animation: dp-strip-scroll 30s linear infinite; }
@keyframes dp-strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dp-strip__item {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.12);
}
.dp-strip__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--dp-accent); flex: none; }
@media (prefers-reduced-motion: reduce) { .dp-strip__track { animation: none; } }
@media (hover: hover) and (pointer: fine) { .dp-strip:hover .dp-strip__track { animation-play-state: paused; } }

/* service-cards grid: 8 slots total (7 service + 1 CTA), 4/2/1 cols so no orphan row */
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dp-border-soft); border: 1px solid var(--dp-border-soft); }
@media (max-width: 1150px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .service-cards { grid-template-columns: 1fr; } }

.service-card { height: 100%; }
.service-card__link {
  display: flex; flex-direction: column; height: 100%;
  background: #fff;
  border-top: 3px solid transparent;
  padding: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform .3s var(--dp-ease), border-color .3s var(--dp-ease), box-shadow .3s var(--dp-ease);
}
@media (hover: hover) and (pointer: fine) {
  .service-card__link:hover { transform: translateY(-4px); border-top-color: var(--dp-accent); box-shadow: var(--dp-shadow-md); }
  .service-card__link:hover img { transform: scale(1.05); }
}
.service-card__num { font-family: var(--dp-font-heading); font-weight: 700; color: var(--dp-accent); font-size: .85rem; letter-spacing: .05em; margin-bottom: 10px; }
.service-card__link .dp-ratio { margin-bottom: 14px; }
.service-card__link h3 { font-size: 1.1rem; margin-bottom: .3em; }
.service-card__link p { font-size: .92rem; flex: 1; }
.service-card__more { font-size: .85rem; font-weight: 700; color: var(--dp-accent); margin-top: 10px; }
.service-card--cta .service-card__link { background: var(--dp-bg-soft); align-items: flex-start; justify-content: center; border-top-color: var(--dp-accent); }

/* ---------- compare table ---------- */
.compare-table { background: #fff; box-shadow: var(--dp-shadow-sm); }
.compare-table th, .compare-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--dp-border-soft); font-size: .95rem; }
.compare-table thead th { background: var(--dp-primary); color: #fff; font-family: var(--dp-font-heading); font-weight: 700; }
.compare-table tbody tr:nth-child(even) { background: var(--dp-bg-soft); }
.compare-table td:last-child a { font-weight: 700; color: var(--dp-accent); background-image: none; }
@media (hover: hover) and (pointer: fine) {
  .compare-table tbody tr:hover { background: var(--dp-accent-soft); }
}
@media (max-width: 640px) {
  .compare-table, .compare-table thead, .compare-table tbody, .compare-table th, .compare-table td, .compare-table tr { display: block; }
  .compare-table thead { display: none; }
  .compare-table tr { border: 1px solid var(--dp-border-soft); margin-bottom: 10px; padding: 10px 14px; }
  .compare-table td { border: none; padding: 6px 0; }
  .compare-table td:first-child { font-weight: 700; }
}

/* ---------- process steps (timeline) ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { border-left: 3px solid var(--dp-accent); padding-left: 18px; }
.process-step__num { display: block; font-family: var(--dp-font-heading); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.03em; line-height: 1; color: var(--dp-border); margin-bottom: 14px; }
.process-step h3 { font-size: 1.02rem; margin-bottom: .25em; }
.process-step p { font-size: .9rem; margin: 0; }

/* ---------- diagnosis cards (C 문제해결형 — outline style) ---------- */
.diagnosis-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .diagnosis-cards { grid-template-columns: 1fr; } }
.diagnosis-card { border: 1px solid var(--dp-border); padding: 22px; transition: border-color .3s var(--dp-ease); }
@media (hover: hover) and (pointer: fine) {
  .diagnosis-card:hover { border-color: var(--dp-accent); }
}
.diagnosis-card h3 { font-size: 1rem; margin-bottom: .3em; }
.diagnosis-card p { font-size: .9rem; margin: 0; }

/* ---------- badge cards (D 신뢰형 — filled style) ---------- */
.badge-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .badge-cards { grid-template-columns: 1fr; } }
.badge-card { background: var(--dp-bg-soft); padding: 24px; border-top: 3px solid var(--dp-accent); }
.badge-card h3 { font-size: 1rem; margin-bottom: .3em; }
.badge-card p { font-size: .9rem; margin: 0; }

/* ---------- stat block (E 통계형 / 상담 운영정보 — bordered) ---------- */
.stat-block { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--dp-border-soft); border: 1px solid var(--dp-border-soft); }
@media (max-width: 640px) { .stat-block { grid-template-columns: 1fr; } }
.stat-item { background: #fff; padding: 20px 22px; }
.stat-item dt { font-size: .8rem; color: var(--dp-text-muted); margin-bottom: 6px; }
.stat-item dd { margin: 0; font-family: var(--dp-font-heading); font-weight: 700; font-size: 1.05rem; }

/* ---------- gallery (D 신뢰형 — shadow style) ---------- */
.gallery-section { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .gallery-section { grid-template-columns: 1fr; } }
.gallery-figure { margin: 0; box-shadow: var(--dp-shadow-md); }

/* ---------- checklist (B 비교형) ---------- */
.checklist li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: .95rem; color: var(--dp-text-sub); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--dp-accent); font-weight: 700; }

/* ---------- marquee (Before/After 실제 시공 현장) ---------- */
.marquee { overflow: hidden; width: 100%; }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: dp-marquee 48s linear infinite; }
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
.marquee__item { margin: 0; flex: none; width: 260px; background: #fff; border: 1px solid var(--dp-border-soft); }
.marquee__item figcaption { padding: 10px 12px; font-size: .82rem; font-weight: 700; color: var(--dp-text); }
@keyframes dp-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ---------- trust list ---------- */
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 1.4em; }
@media (max-width: 900px) { .trust-list { grid-template-columns: 1fr; } }
.trust-list li { border: 1px solid rgba(255,255,255,.18); padding: 18px 20px; font-weight: 700; font-family: var(--dp-font-heading); font-size: .98rem; }
.section--dark .trust-list li { border-color: rgba(255,255,255,.22); }
.section--accent .trust-list li { border-color: rgba(23,20,15,.22); color: var(--dp-primary); }

/* ---------- related services ---------- */
.related-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dp-border-soft); border: 1px solid var(--dp-border-soft); }
@media (max-width: 900px) { .related-cards { grid-template-columns: repeat(2, 1fr); } }
.related-card { display: block; background: #fff; overflow: hidden; transition: transform .3s var(--dp-ease), box-shadow .3s var(--dp-ease); position: relative; z-index: 1; }
.related-card span { display: block; padding: 10px 12px; font-size: .85rem; font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .related-card:hover { transform: translateY(-4px); box-shadow: var(--dp-shadow-sm); }
  .related-card:hover img { transform: scale(1.05); }
}

/* ---------- FAQ split (main page) ---------- */
.faq-split { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.faq-split > * { margin-inline: 0; max-width: none; }
.faq-split .section-head { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; }
@media (max-width: 768px) { .faq-split { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--dp-border-soft); padding: 18px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 1rem; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--dp-accent); transition: transform .3s var(--dp-ease); flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; font-size: .95rem; }

/* ---------- contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { border: 1px solid var(--dp-border); padding: 32px; text-align: center; }
.contact-card h2 { font-size: 1.3rem; }

/* ---------- bottom cta ---------- */
.bottom-cta { text-align: center; }
.bottom-cta p { max-width: 560px; margin-inline: auto; }
.bottom-cta--split { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; text-align: left; }
.bottom-cta--split > * { margin-inline: 0; }
.bottom-cta--split .bottom-cta__text { max-width: 560px; }
.bottom-cta--split .bottom-cta__text p { margin-inline: 0; }
@media (max-width: 1024px) {
  .bottom-cta--split { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .bottom-cta--split .bottom-cta__text { max-width: 560px; margin-inline: auto; }
}

.dp-back-main, .breadcrumb-back { font-size: .9rem; }
.page-updated { text-align: center; font-size: .82rem; color: var(--dp-text-muted); padding-block: 28px; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--dp-primary); color: rgba(255,255,255,.82); padding: 40px var(--dp-gutter) 96px; font-size: .88rem; }
.ftr-biz { max-width: var(--dp-max-w); margin: 0 auto 16px; line-height: 1.9; }
.ftr-links { max-width: var(--dp-max-w); margin: 0 auto; display: flex; gap: 6px; flex-wrap: wrap; }
.ftr-links a { color: #fff; }

/* ---------- floating CTA (desktop/tablet only) ---------- */
.dp-float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  height: 56px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px 0 16px;
  background: var(--dp-primary-3);
  border-left: 3px solid var(--dp-accent);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow-lg);
  color: #fff;
}
.dp-float-cta__label { font-size: .88rem; font-weight: 700; white-space: nowrap; }
.dp-float-cta::before {
  content: ''; position: absolute; inset: -6px;
  border: 2px solid var(--dp-accent-soft);
  opacity: .6;
  animation: dp-pulse 2.4s var(--dp-ease) infinite;
}
@keyframes dp-pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.18); opacity: 0; } }
.dp-float-cta__icon { width: 26px; height: 26px; }
@media (max-width: 768px) { .dp-float-cta-wrap { display: none; } }

/* ---------- mobile sticky bar (mobile only) ---------- */
.dp-mobile-sticky { display: none; }
@media (max-width: 768px) {
  .dp-mobile-sticky {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 10px 16px; background: #fff; border-top: 1px solid var(--dp-border-soft);
    box-shadow: 0 -4px 16px rgba(23,20,15,.1);
  }
  .dp-mobile-sticky .dp-cta { width: 100%; justify-content: center; }
  .site-footer { padding-bottom: 88px; }
}
