/* 클린플러스 — 쓰레기수거서비스 사이트 공통 스타일
   SMART WASTE COLLECTION: Warm Ivory / Deep Forest Green / Sage / Lime */
:root {
  --ivory: #F7F5EF;
  --ivory-deep: #EFEBDD;
  --forest-900: #142A1D;
  --forest-800: #1B3826;
  --forest-700: #234A31;
  --forest-600: #2E5E3F;
  --sage-500: #7E9270;
  --sage-300: #B7C3A6;
  --sage-100: #E4E9DA;
  --lime-400: #C7DE5A;
  --lime-300: #DCEA96;
  --lime-ink: #33430F;
  --charcoal-900: #23261F;
  --charcoal-700: #454A3C;
  --charcoal-500: #6D7362;
  --charcoal-300: #A4A895;
  --line: #E2DDC9;
  --white: #FFFFFF;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 26px rgba(35, 38, 31, 0.08);
  --shadow-hover: 0 18px 36px rgba(20, 42, 29, 0.16);
  --max-w: 1180px;
  --font-kr: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-en: "Inter", var(--font-kr);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-kr);
  color: var(--charcoal-900);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.28; letter-spacing: -0.01em; font-family: var(--font-en); }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
p { margin: 0; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealImg { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
.fade-1 { animation: fadeUp .6s ease .05s both; }
.fade-2 { animation: fadeUp .6s ease .18s both; }
.fade-3 { animation: fadeUp .6s ease .3s both; }
.fade-4 { animation: fadeUp .6s ease .42s both; }
.reveal-img { animation: revealImg .8s cubic-bezier(.2,.7,.2,1) both; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(20,42,29,0.05);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--forest-800); font-family: var(--font-en); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  padding: 10px 14px; border-radius: var(--radius-pill); font-size: 0.93rem; font-weight: 600; color: var(--charcoal-700);
  transition: background .15s, color .15s;
}
.nav-desktop a:hover { background: var(--sage-100); color: var(--forest-800); }
.nav-cta { display:flex; gap:10px; align-items:center; }
.hamburger {
  display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1.5px solid var(--charcoal-900);
  background: transparent; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger svg { width: 22px; height: 22px; color: var(--charcoal-900); }
.nav-mobile { display: none; flex-direction: column; padding: 6px 22px 18px; border-top: 1px solid var(--line); }
.nav-mobile a { padding: 13px 4px; border-bottom: 1px solid var(--ivory-deep); font-weight: 600; color: var(--charcoal-700); }
.nav-mobile.open { display: flex; }

.breadcrumb { padding: 14px 0 0; font-size: 0.82rem; color: var(--charcoal-500); display:flex; gap:6px; flex-wrap:wrap; }
.breadcrumb a { color: var(--charcoal-500); }
.breadcrumb a:hover { color: var(--forest-700); }
.breadcrumb span { color: var(--charcoal-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.98rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap; font-family: var(--font-kr);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--forest-700); color: var(--white); box-shadow: 0 10px 22px rgba(20,42,29,0.22); }
.btn-primary:hover { background: var(--forest-800); box-shadow: 0 14px 28px rgba(20,42,29,0.28); }
.btn-outline { background: transparent; color: var(--charcoal-900); border-color: var(--charcoal-900); }
.btn-outline:hover { background: var(--charcoal-900); color: var(--ivory); }
.btn-lime { background: var(--lime-400); color: var(--lime-ink); box-shadow: 0 10px 22px rgba(199,222,90,0.3); }
.btn-lime:hover { background: var(--lime-300); }
.btn-lg { padding: 17px 32px; font-size: 1.03rem; }

/* ---------- Section ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--ivory-deep); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin: 0 0 36px; text-align: left; }
.kicker { display: inline-block; font-family: var(--font-en); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; color: var(--forest-600); text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; color: var(--charcoal-900); }
.lede { color: var(--charcoal-700); font-size: 1.02rem; }

/* ---------- HERO (Asymmetric Editorial) ---------- */
.hero { padding: 44px 0 70px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow { display:block; font-family: var(--font-en); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest-600); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); color: var(--charcoal-900); margin-bottom: 14px; }
.hero-tagline { font-family: var(--font-kr); font-weight: 600; font-size: 1.18rem; color: var(--forest-700); margin-bottom: 18px; line-height: 1.5; }
.hero .lede { font-size: 1.03rem; margin-bottom: 26px; max-width: 480px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip { padding: 7px 15px; border-radius: var(--radius-pill); background: var(--sage-100); color: var(--forest-800); font-size: 0.82rem; font-weight: 600; border: 1px solid var(--sage-300); }
a.chip { transition: background .15s, color .15s; }
a.chip:hover { background: var(--forest-700); color: var(--ivory); border-color: var(--forest-700); }

.more-services { margin-top: 22px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.more-services-label { font-size: 0.82rem; font-weight: 700; color: var(--charcoal-500); margin-right: 4px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 0.82rem; color: var(--charcoal-500); }

.hero-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3.1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .b-label { left: 16px; bottom: 16px; }
.hero-sub-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.hero-sub-media .hero-media { aspect-ratio: 4/3; }

.hero-bento { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 460px; }
.hero-bento .b-img { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--sage-100); }
.hero-bento .b-img.b1 { grid-row: 1 / 3; border-radius: var(--radius-xl) var(--radius-md) var(--radius-md) var(--radius-xl); }
.hero-bento .b-img.b2 { border-radius: var(--radius-md) var(--radius-xl) var(--radius-md) var(--radius-md); }
.hero-bento .b-img.b3 { border-radius: var(--radius-md) var(--radius-md) var(--radius-xl) var(--radius-md); }
.hero-bento img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hero-bento .b-img:hover img { transform: scale(1.02); }
.b-label { position: absolute; left: 14px; bottom: 14px; background: rgba(247,245,239,0.94); backdrop-filter: blur(4px); padding: 8px 13px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.b-label .en { display:block; font-family: var(--font-en); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; color: var(--forest-600); }
.b-label .kr { display:block; font-size: 0.85rem; font-weight: 700; color: var(--charcoal-900); }

/* ---------- Quick Service Bar ---------- */
.quick-bar { padding: 20px 0; background: var(--forest-800); }
.quick-bar .wrap { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.quick-bar .wrap::-webkit-scrollbar { display: none; }
.quick-item { flex: 1 0 auto; display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); color: var(--ivory); white-space: nowrap; }
.quick-item .num { font-family: var(--font-en); font-weight: 800; color: var(--lime-400); font-size: 0.9rem; }
.quick-item span:last-child { font-weight: 600; font-size: 0.92rem; }

/* ---------- Bento Grid (What We Collect) ---------- */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 16px; }
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.bento-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.bento-card:hover .bento-card-img { transform: scale(1.04); }
.bento-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s ease; }
.bento-card-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(255, 255, 255, 0.66); }
.bento-card-body { position: relative; z-index: 2; height: 100%; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.bento-card h3 { font-size: 1.08rem; color: var(--charcoal-900); text-shadow: 0 1px 10px rgba(255,255,255,0.55); }
.bento-card p { font-size: 0.87rem; color: var(--charcoal-700); text-shadow: 0 1px 8px rgba(255,255,255,0.55); }
.bento-card.big { grid-column: span 2; grid-row: span 2; background: var(--forest-700); border-color: var(--forest-700); }
.bento-card.big .bento-card-overlay { background: rgba(20, 42, 29, 0.64); }
.bento-card.big h3, .bento-card.big p { color: var(--ivory); text-shadow: 0 1px 10px rgba(20,42,29,0.55); }
.bento-card.big p { color: var(--sage-100); }
.bento-card.accent { background: var(--lime-300); border-color: var(--lime-300); }
.bento-card.accent .bento-card-overlay { background: rgba(199, 222, 90, 0.6); }
.bento-card.accent h3, .bento-card.accent p { color: var(--lime-ink); text-shadow: 0 1px 10px rgba(220,235,150,0.55); }
.bento-card.wide { grid-column: span 2; }

/* ---------- Situational (Numbered) ---------- */
.situ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.situ-card { padding: 30px 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.situ-num { font-family: var(--font-en); font-size: 2.6rem; font-weight: 800; color: var(--sage-300); line-height: 1; margin-bottom: 14px; }
.situ-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal-900); }
.situ-card p { font-size: 0.9rem; color: var(--charcoal-700); }

/* ---------- Service Map ---------- */
.service-map { display: flex; flex-direction: column; align-items: center; gap: 0; }
.map-root { padding: 14px 28px; border-radius: var(--radius-pill); background: var(--forest-700); color: var(--ivory); font-weight: 700; margin-bottom: 26px; }
.map-branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; position: relative; }
.map-branches::before { content: ''; position: absolute; top: -26px; left: 16.6%; right: 16.6%; height: 1px; background: var(--sage-300); }
.map-branch { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.map-branch::before { content: ''; position: absolute; top: -26px; left: 50%; width: 1px; height: 26px; background: var(--sage-300); }
.map-mid { padding: 10px 20px; border-radius: var(--radius-pill); background: var(--sage-100); color: var(--forest-800); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; }
.map-leaves { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.map-leaf { padding: 11px 10px; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--line); font-size: 0.86rem; color: var(--charcoal-700); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; gap: 26px; }
.ba-pair { }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-imgs figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; }
.ba-imgs img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: var(--radius-pill); font-family: var(--font-en); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; z-index: 2; }
.ba-tag.before { background: var(--charcoal-900); color: var(--ivory); }
.ba-tag.after { background: var(--lime-400); color: var(--lime-ink); }
.ba-caption { margin-top: 12px; font-size: 0.88rem; color: var(--charcoal-700); text-align: center; }
.ba-note { margin-top: 20px; font-size: 0.78rem; color: var(--charcoal-500); text-align: center; }

/* ---------- Timeline (Process) ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; position: relative; }
.tl-step { position: relative; padding-left: 46px; }
.tl-step .step-num {
  position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--forest-700); color: var(--ivory); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 0.95rem;
}
.tl-step h3 { font-size: 1rem; margin-bottom: 6px; color: var(--charcoal-900); }
.tl-step p { font-size: 0.88rem; color: var(--charcoal-700); }

/* ---------- Cards / Grid generic ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.info-card { padding: 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.info-card h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--forest-800); }
.info-card p { font-size: 0.89rem; color: var(--charcoal-700); }
.icon-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); text-align: center; }
.icon-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-100); color: var(--forest-800); font-weight: 800; font-family: var(--font-en); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.icon-card h3 { font-size: 1rem; margin-bottom: 8px; }
.icon-card p { font-size: 0.88rem; color: var(--charcoal-700); }

.card { border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--sage-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1rem; margin-bottom: 6px; }
.card-body p { font-size: 0.87rem; color: var(--charcoal-700); margin-bottom: 10px; }
.card-link { font-size: 0.85rem; font-weight: 700; color: var(--forest-700); }

/* ---------- Table ---------- */
.table-scroll-hint { font-size: 0.78rem; color: var(--charcoal-500); margin-bottom: 10px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
table.compare th { background: var(--forest-700); color: var(--ivory); font-weight: 700; }
table.compare tr:last-child td { border-bottom: none; }
table.compare a { color: var(--forest-700); font-weight: 600; }

/* ---------- Checklist ---------- */
.checklist li { position: relative; padding: 10px 0 10px 30px; font-size: 0.94rem; color: var(--charcoal-800); border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--forest-600); font-weight: 800; }

/* ---------- Region ---------- */
.region-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.region-tags { display: flex; gap: 10px; margin-top: 18px; }
.region-tag { padding: 9px 18px; border-radius: var(--radius-pill); background: var(--forest-700); color: var(--ivory); font-weight: 700; font-size: 0.88rem; }
.region-media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.region-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 4px; cursor: pointer; font-weight: 700; font-size: 0.97rem; list-style: none; color: var(--charcoal-900); }
.faq-q::-webkit-details-marker { display: none; }
.qmark { color: var(--forest-600); margin-right: 4px; }
.faq-a { padding: 0 4px 18px; font-size: 0.9rem; color: var(--charcoal-700); }
.chev { transition: transform .2s; color: var(--charcoal-500); flex-shrink: 0; }
details[open] .chev { transform: rotate(180deg); }
.faq-more-hidden { display: none; }
.faq-more-hidden.open { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest-800); border-radius: var(--radius-xl); padding: 56px 44px; text-align: center; }
.cta-eyebrow { display: block; font-family: var(--font-en); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; color: var(--lime-400); text-transform: uppercase; margin-bottom: 14px; }
.cta-band h2 { color: var(--ivory); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band p { color: var(--sage-100); font-size: 0.96rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Article copy ---------- */
.article-copy { max-width: 760px; margin: 0 auto; }
.article-copy h2 { font-size: 1.5rem; margin-bottom: 16px; }
.article-copy h3 { font-size: 1.1rem; margin: 30px 0 10px; color: var(--forest-800); }
.article-copy p { color: var(--charcoal-700); font-size: 0.95rem; margin-bottom: 4px; }
.article-copy ul { margin: 12px 0; }
.article-copy ul li { position: relative; padding: 6px 0 6px 22px; font-size: 0.93rem; color: var(--charcoal-700); }
.article-copy ul li::before { content: '—'; position: absolute; left: 0; color: var(--sage-500); }
.updated-note { margin-top: 26px; font-size: 0.8rem; color: var(--charcoal-500); }

/* ---------- Consultation phone card ---------- */
.consult-phone-card { background: var(--forest-800); border-radius: var(--radius-xl); padding: 34px; text-align: center; }
.consult-phone-card p { color: var(--sage-100); }
.consult-phone-number { font-family: var(--font-en); font-size: 2rem; font-weight: 800; color: var(--ivory); margin: 10px 0 20px; }
.consult-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-900); color: var(--sage-100); padding: 56px 0 22px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-en); font-weight: 800; font-size: 1.3rem; color: var(--lime-300); margin-bottom: 12px; }
.footer-biz { font-size: 0.86rem; color: var(--sage-300); line-height: 1.8; }
.footer-col h4 { font-size: 0.86rem; color: var(--ivory); margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--sage-300); }
.footer-col ul li a:hover { color: var(--lime-300); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: var(--sage-300); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .hero-bento { height: 380px; order: -1; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bento-card.big { grid-column: span 2; grid-row: span 1; }
  .situ-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .region-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-branches { grid-template-columns: 1fr; gap: 34px; }
  .map-branches::before { display: none; }
  .map-branch::before { display: none; }
}
@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .section { padding: 54px 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .situ-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .ba-imgs { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .quick-item { flex: 0 0 auto; }
}
