/* 냉장고장맞춤 — 키친테리어. 원목 캐비닛 + 황동 손잡이 톤 (딥 월넛 / 브래스 / 리넨) */

:root {
  --forest: #3C2A1E;
  --forest-2: #2A1D14;
  --green: #7A5A34;
  --gold: #9C6B2E;
  --gold-2: #C9973F;
  --cream: #F6F1E7;
  --cream-2: #ECE3D2;
  --text-on-light: #221A13;
  --text-on-dark: #ffffff;
  --muted-on-light: #6b5f52;
  --muted-on-dark: #cfc6b8;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-pill: 99px;
  --shadow-card: 0 6px 24px rgba(60, 42, 30, 0.12);
  --font-head: 'Sora', 'Noto Sans KR', sans-serif;
  --font-display: 'Gowun Batang', 'Noto Serif KR', serif;
  --font-body: 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-pop: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-light);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.3; }
h1, h2.h2-title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; }

body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--text-on-dark); }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  background: rgba(201, 160, 48, .12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-dark .eyebrow { background: rgba(232, 184, 64, .16); }

h2.h2-title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p.lead { font-size: 1.05rem; color: var(--muted-on-light); max-width: 640px; }

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: .98rem;
  border: none;
  cursor: pointer;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--forest); }
.btn-outline { background: transparent; border: 1.5px solid var(--text-on-dark); color: var(--text-on-dark); }
.btn-outline-light { background: transparent; border: 1.5px solid var(--forest); color: var(--forest); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .card:hover, .svc-card:hover, .link-card:hover { transform: translateY(-4px); }
  .btn-gold:hover { box-shadow: 0 10px 24px rgba(201,160,48,.35); }
  a.card-link:hover .card-thumb img { transform: scale(1.06); }
  .card:hover { box-shadow: 0 16px 32px rgba(60,42,30,.18); }
  .card-link:hover .arrow { transform: translateX(4px); }
  .faq-q:hover { color: var(--gold); }
  .value-card:hover .value-icon { background: var(--gold); border-color: var(--gold); }
  .value-card:hover .value-icon svg * { stroke: #fff; }
  .scroll-cue:hover { opacity: 1; }
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 18px 30px; font-size: 1.05rem; }
.arrow { display: inline-block; transition: transform .25s var(--ease-out); }

/* 전화번호 강조 표시 */
.phone-display {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.7rem, 4.4vw, 2.3rem);
  color: var(--gold-2); letter-spacing: .01em;
  margin: 18px 0 26px;
}
.phone-display svg { flex-shrink: 0; }
@media (hover: hover) and (pointer: fine) { .phone-display:hover { color: #fff; } }

/* 그리드 */
.dp-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.dp-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dp-g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dp-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.dp-stat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; align-items: center; }
@media (max-width: 1024px) { .dp-g3, .dp-g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dp-g2, .dp-g3, .dp-g4 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .dp-stat3 { grid-template-columns: 1fr; gap: 16px; } }

/* 카드 */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.card-body { padding: 24px; }
.card-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
a.card-link { display: block; color: inherit; }

.card-badges { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) {
  .card-badges { flex-direction: column; align-items: flex-start; gap: 6px; }
}
.badge {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--forest);
  border: 1px solid var(--cream-2);
}

/* 헤더 */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
  transition: transform .3s var(--ease-out);
}
.hdr.hdr-hidden { transform: translateY(-100%); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1120px; margin: 0 auto; }
.hdr-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--forest); display: flex; align-items: center; gap: 8px; }
.hdr-logo img { width: 28px; height: 28px; }
.hdr-nav { display: flex; gap: 28px; align-items: center; }
.hdr-nav a { position: relative; font-weight: 600; font-size: .95rem; color: var(--forest); }
.hdr-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.hdr-nav a:hover::after { transform: scaleX(1); }
.hdr-phone { background: var(--forest); color: #fff; padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: .9rem; }
.hdr-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

@media (max-width: 768px) {
  .hdr-nav, .hdr-phone { display: none; }
  .hdr-burger { display: block; }
}

#mob-nav {
  position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px;
  background: var(--forest); color: #fff; z-index: 100;
  transform: translateX(100%); transition: transform .3s ease;
  padding: 24px; overflow-y: auto;
}
#mob-nav.open { transform: translateX(0); }
#mob-nav a { display: block; color: #fff; font-weight: 700; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
#mob-nav .close-btn { background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
#mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99; }
#mob-overlay.open { display: block; }

/* 모바일 하단 스티키 CTA */
#mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--forest); padding: 10px 16px; gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
@media (max-width: 768px) {
  #mob-bar { display: flex; }
  body { padding-bottom: 64px; }
}
#mob-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 0; border-radius: var(--radius-sm); font-weight: 700; font-size: .92rem; }
#mob-bar .call { background: var(--gold); color: var(--forest); }
#mob-bar .msg { background: rgba(255,255,255,.12); color: #fff; }

#float-cta {
  position: fixed; right: 28px; bottom: 32px; z-index: 60;
  background: var(--gold); color: var(--forest); padding: 16px 26px;
  border-radius: var(--radius-pill); font-weight: 800; box-shadow: 0 10px 24px rgba(201,160,48,.4);
  opacity: 0; transform: translateY(12px) scale(.95); pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
#float-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
@media (max-width: 768px) { #float-cta { display: none; } }

/* 히어로 — 시공사진 + 실측 뱃지 */
.hero { position: relative; background: var(--cream); padding: 88px 0 68px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.hero-inner:has(> .hero-card:only-child) { display: block; }

/* 서브페이지 히어로 — 사진 배경 + 텍스트 카드 */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s var(--ease-out);
}
.hero-slide.active { opacity: 1; }
.hero-slides::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,29,20,.55), rgba(42,29,20,.85));
}
.hero:has(.hero-slides) .hero-inner, .hero:has(.hero-slides) .hero-card { position: relative; z-index: 1; }
.hero-card { max-width: 560px; color: var(--text-on-dark); }
.hero-card .hero-sub { color: var(--gold-2); font-weight: 700; font-family: var(--font-head); margin-bottom: 12px; letter-spacing: .02em; }
.hero-card h1 { font-size: clamp(2rem, 4.2vw, 2.8rem); color: var(--text-on-dark); }
.hero-card .lead { color: var(--muted-on-dark); }
.hero-photo { position: relative; }
.hero-photo::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px;
  background: var(--gold); border-radius: var(--radius-md);
  transform: rotate(-2deg); z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
}
.hero-badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
  color: var(--forest); font-weight: 700; font-size: .85rem;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--gold); box-shadow: var(--shadow-card);
}
.hero-copy .hero-sub { color: var(--gold); font-weight: 700; font-family: var(--font-head); margin-bottom: 12px; letter-spacing: .02em; }
.hero-copy h1 { font-size: clamp(2.8rem, 6.5vw, 4.8rem); line-height: 1.05; color: var(--forest); }
.hero-copy h1 mark {
  background: linear-gradient(to top, var(--gold-2) 0 .34em, transparent .34em);
  color: inherit; padding: 0 .04em;
}
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* 히어로 진입 시퀀스 */
@keyframes hero-in { from { opacity: 0; transform: translateY(16px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero-photo, .hero-copy > * { animation: hero-in .7s var(--ease-out) both; }
.hero-copy > *:nth-child(1) { animation-delay: 80ms; }
.hero-copy > *:nth-child(2) { animation-delay: 160ms; }
.hero-copy > *:nth-child(3) { animation-delay: 240ms; }
.hero-copy > *:nth-child(4) { animation-delay: 320ms; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 340px; margin: 0 auto; }
}

/* 전후 비교 슬라이더 */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.ba-slider {
  position: relative; aspect-ratio: 4/3; overflow: hidden; touch-action: pan-y;
  --pos: 50%;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: var(--gold-2); transform: translateX(-50%); pointer-events: none;
}
.ba-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 40px; height: 40px;
  transform: translate(-50%, -50%); border-radius: 50%; background: var(--gold-2);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14' fill='none'%3E%3Cpath d='M7 1L1 7l6 6M13 1l6 6-6 6' stroke='%233C2A1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.ba-tag {
  position: absolute; top: 14px; z-index: 2; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; padding: 5px 12px; border-radius: var(--radius-pill); pointer-events: none;
}
.ba-tag-before { left: 14px; background: rgba(34,26,19,.68); color: #fff; }
.ba-tag-after { right: 14px; background: var(--gold-2); color: var(--forest); }
.ba-caption { padding: 18px 20px; }
.ba-caption h3 { margin-bottom: 4px; }
.ba-caption p { margin: 0; color: var(--muted-on-light); font-size: .92rem; }
@media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }

/* 전후 갤러리 (일반형) */
.ba-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ba-col-label {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ba-col-before .ba-col-label::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--muted-on-light); }
.ba-col-after .ba-col-label::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.ba-col-grid { display: grid; gap: 16px; }
@media (max-width: 768px) { .ba-split { grid-template-columns: 1fr; gap: 28px; } }

/* 프로세스 */
.proc-list { display: flex; justify-content: space-between; gap: 12px; }
.proc-step { flex: 1; text-align: center; position: relative; padding: 0 8px; }
.proc-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 800; font-size: 1.3rem; margin: 0 auto 16px; position: relative; z-index: 2;
  box-shadow: 0 6px 18px rgba(156,107,46,.32);
  transform: scale(.55); opacity: 0;
  transition: transform .55s var(--ease-pop), opacity .35s var(--ease-out);
}
.proc-step h3 { font-size: 1.05rem; }
.proc-step p { color: var(--muted-on-light); font-size: .88rem; line-height: 1.5; margin: 0; }
.proc-step::after {
  content: ''; position: absolute; top: 30px; left: 50%; width: calc(100% + 12px);
  height: 3px; background: var(--cream-2); z-index: 1;
}
.proc-step::before {
  content: ''; position: absolute; top: 30px; left: 50%; width: 0; height: 3px;
  background: var(--gold); z-index: 1; transition: width .5s var(--ease-out);
}
.proc-step:last-child::after, .proc-step:last-child::before { display: none; }

.stagger.in .proc-num { transform: scale(1); opacity: 1; }
.stagger.in .proc-step::before { width: calc(100% + 12px); }
.stagger.in .proc-step:nth-child(1) .proc-num { transition-delay: 0ms; }
.stagger.in .proc-step:nth-child(2) .proc-num { transition-delay: 120ms; }
.stagger.in .proc-step:nth-child(3) .proc-num { transition-delay: 240ms; }
.stagger.in .proc-step:nth-child(4) .proc-num { transition-delay: 360ms; }
.stagger.in .proc-step:nth-child(5) .proc-num { transition-delay: 480ms; }
.stagger.in .proc-step:nth-child(1)::before { transition-delay: 160ms; }
.stagger.in .proc-step:nth-child(2)::before { transition-delay: 280ms; }
.stagger.in .proc-step:nth-child(3)::before { transition-delay: 400ms; }
.stagger.in .proc-step:nth-child(4)::before { transition-delay: 520ms; }

@media (max-width: 768px) {
  .proc-list { flex-direction: column; gap: 10px; }
  .proc-step { flex-direction: column; padding: 24px 0; }
  .proc-step::after, .proc-step::before { display: none; }
}

/* 통계 카운터 */
.stat-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--forest); }
.section-dark .stat-num { color: var(--gold-2); }
.stat-label { color: var(--muted-on-light); font-size: .92rem; }

/* FAQ 아코디언 */
.faq-item { border-bottom: 1px solid var(--cream-2); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-weight: 700; font-size: 1.02rem; display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); color: var(--text-on-light);
  transition: color .2s var(--ease-out);
}
.faq-q .icon { flex-shrink: 0; transition: transform .3s var(--ease-out); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s var(--ease-out), opacity .25s var(--ease-out) .05s; color: var(--muted-on-light); }
.faq-item.open .faq-a { opacity: 1; }
.faq-a p { padding-bottom: 20px; margin: 0; }

/* 타임라인/체크리스트 (가이드 페이지) */
.timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--cream-2); }
.tl-item { position: relative; padding-bottom: 32px; }
.tl-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; background: var(--cream); padding: 14px 18px; border-radius: var(--radius-sm); }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 800; }

table.dp-table { width: 100%; border-collapse: collapse; }
table.dp-table th, table.dp-table td { padding: 12px 16px; border-bottom: 1px solid var(--cream-2); text-align: left; }
table.dp-table th { background: var(--cream); font-family: var(--font-head); }
.table-scroll { overflow-x: auto; }

/* 스크롤 리빌 */
.reveal {
  opacity: 0; transform: translateY(20px); filter: blur(6px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), filter .6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.stagger.in > *:nth-child(6) { transition-delay: 350ms; }

/* 스크롤 진행 바 */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left;
}

/* 히어로 스크롤 유도 */
.scroll-cue {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  color: var(--forest); opacity: .6; animation: scroll-cue-bounce 2s var(--ease-out) infinite;
}
@keyframes scroll-cue-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* 통계 바 */
.stat-bar { padding: 48px 0; }
.stat-num-suffix { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--gold-2); margin-left: 2px; }

/* 이유/가치 카드 */
.value-card { text-align: center; padding: 4px; }
.value-icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 1.02rem; }
.value-card p { color: var(--muted-on-light); font-size: .92rem; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* 푸터 */
footer.site-footer { background: var(--forest); color: var(--muted-on-dark); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-size: .95rem; }
.footer-grid a { color: var(--muted-on-dark); display: block; padding: 6px 0; }
.footer-biz p { margin: 4px 0; font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 20px; font-size: .8rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

br.br-mobile { display: none; }
br.br-desktop { display: inline; }
@media (max-width: 768px) {
  br.br-mobile { display: inline; }
  br.br-desktop { display: none; }
}

@media (max-width: 1024px) { .dp-g2 { grid-template-columns: 1fr; } }
