/* ============================================
   apt-system — Light Theme
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #ffffff;
  --bg-2:       #f4f6fb;
  --bg-card:    #f8fafc;
  --border:     rgba(0,0,0,.10);
  --text:       #1e293b;
  --muted:      #64748b;
  --accent:     #22c55e;
  --accent-d:   #16a34a;
  --accent-glow:rgba(34,197,94,.18);
  --white:      #ffffff;
  --radius:     12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
  transition: background .3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }
.logo-text strong { font-size: 1.05rem; font-weight: 900; color: var(--text); }
.logo-text span   { font-size: .65rem; color: var(--muted); letter-spacing: .08em; display: block; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: color .2s; letter-spacing: .02em;
}
.nav-menu a:hover { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-tel { font-size: .9rem; font-weight: 800; color: var(--text); }
.header-tel span { display: block; font-size: .6rem; font-weight: 400; color: var(--muted); }
.btn-consult {
  background: var(--accent); color: #fff;
  padding: 9px 22px; border-radius: 6px; font-size: .85rem; font-weight: 700;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-consult:hover { background: var(--accent-d); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all .3s; }

/* ============================================
   HERO — 대형 타이포 + 오른쪽 콜라주
   ============================================ */
#hero {
  min-height: 100vh; padding-top: 66px;
  display: flex; align-items: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

#hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 24px;
  letter-spacing: -.03em;
}
#hero h1 em {
  font-style: normal; color: var(--accent);
  display: block;
}
#hero p {
  color: var(--muted); font-size: 1.02rem;
  line-height: 1.85; margin-bottom: 40px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-main {
  background: var(--accent); color: #fff;
  padding: 16px 38px; border-radius: 8px;
  font-size: 1rem; font-weight: 800;
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: transform .2s, box-shadow .2s;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(34,197,94,.3); }
.btn-ghost {
  background: transparent; color: var(--text);
  padding: 16px 38px; border-radius: 8px;
  font-size: 1rem; font-weight: 700;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats { display: flex; gap: 40px; }
.hero-stat-item { }
.hero-stat-num {
  font-size: 2rem; font-weight: 900; color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; }

/* 오른쪽: 포토 콜라주 */
.hero-collage {
  position: relative; height: 560px;
}
.hc-main {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 16px; overflow: hidden;
}
.hc-main img { width: 100%; height: 100%; object-fit: cover; }
.hc-sub1 {
  position: absolute; bottom: 0; left: 5%;
  width: 46%; height: 40%;
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--bg);
}
.hc-sub1 img { width: 100%; height: 100%; object-fit: cover; }
.hc-sub2 {
  position: absolute; top: 18%; right: 0;
  width: 40%; height: 56%;
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--bg);
}
.hc-sub2 img { width: 100%; height: 100%; object-fit: cover; }
/* 콜라주 메인 슬라이드쇼 — 오른쪽→왼쪽 슬라이드 */
.hc-slideshow { position: relative; overflow: hidden; }
.hcs-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: translateX(100%);
  transition: transform .85s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.hcs-img.active { transform: translateX(0); }
.hcs-img.prev   { transform: translateX(-100%); }

.hc-badge {
  position: absolute; bottom: 12%; right: 2%;
  background: var(--accent); color: #fff;
  border-radius: 10px; padding: 14px 20px;
  font-size: .82rem; font-weight: 800;
  line-height: 1.4; z-index: 2;
  box-shadow: 0 8px 28px rgba(34,197,94,.35);
}
.hc-badge strong { display: block; font-size: 1.4rem; }

/* ============================================
   TICKER
   ============================================ */
#ticker {
  background: var(--accent); overflow: hidden; padding: 14px 0;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track span {
  font-size: .8rem; font-weight: 800; color: rgba(0,0,0,.55);
  letter-spacing: .1em; padding: 0 40px; text-transform: uppercase;
}
.ticker-track span::after { content: ' ·'; margin-left: 40px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   SERVICES — 번호형 수평 행
   ============================================ */
#services {
  background: var(--bg-2); padding: 110px 0;
}
.section-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  color: var(--text); line-height: 1.25; margin-bottom: 12px;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-desc { color: var(--muted); font-size: .97rem; margin-bottom: 72px; max-width: 560px; }

.svc-rows { display: flex; flex-direction: column; gap: 2px; }
.svc-row {
  display: grid; grid-template-columns: 120px 1fr 380px;
  gap: 0; align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s, background .3s;
  background: var(--bg-card);
  margin-bottom: 16px;
}
.svc-row:hover { border-color: var(--accent); background: #f0fdf4; }
.svc-row-num {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 900; color: rgba(34,197,94,.15);
  border-right: 1px solid var(--border); padding: 36px 0;
  transition: color .3s;
}
.svc-row:hover .svc-row-num { color: var(--accent); }
.svc-row-body { padding: 36px 44px; display: flex; flex-direction: column; justify-content: center; }
.svc-row-icon { font-size: 2rem; margin-bottom: 14px; }
.svc-row-body h3 { font-size: 1.25rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.svc-row-body p  { color: var(--muted); font-size: .9rem; line-height: 1.8; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag {
  font-size: .72rem; font-weight: 700; color: var(--accent);
  background: rgba(34,197,94,.1); padding: 4px 12px; border-radius: 4px;
  border: 1px solid rgba(34,197,94,.2);
}
.svc-row-photo { position: relative; overflow: hidden; min-height: 220px; }
.svc-row-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-row:hover .svc-row-photo img { transform: scale(1.05); }

/* ============================================
   GALLERY — 불규칙 마소너리
   ============================================ */
#gallery { background: var(--bg); padding: 110px 0; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.gm-item {
  position: relative; overflow: hidden;
  border-radius: 8px; cursor: pointer;
  background: var(--bg-card);
}
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gm-item:hover img { transform: scale(1.08); }
.gm-item-over {
  position: absolute; inset: 0;
  background: rgba(34,197,94,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.gm-item:hover .gm-item-over { background: rgba(34,197,94,.18); }
.gm-item-over svg { opacity: 0; transition: opacity .3s; width: 36px; height: 36px; fill: #fff; }
.gm-item:hover .gm-item-over svg { opacity: 1; }

/* 크기 변형 */
.gm-wide  { grid-column: span 2; }
.gm-tall  { grid-row:    span 2; }
.gm-big   { grid-column: span 2; grid-row: span 2; }

.gallery-more-wrap { text-align: center; margin-top: 32px; }
#btnGalleryMore {
  background: var(--bg-card); color: var(--text);
  border: 1px solid var(--border);
  padding: 13px 36px; border-radius: 8px;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: border-color .2s, color .2s;
}
#btnGalleryMore:hover { border-color: var(--accent); color: var(--accent); }
.gm-item.gallery-hidden { display: none; }

/* ============================================
   WHY — 풀블리드 교차 행
   ============================================ */
#why { background: var(--bg-2); padding: 110px 0; }
.why-rows { display: flex; flex-direction: column; gap: 0; }
.why-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px; overflow: hidden;
}
.why-row.reverse { direction: rtl; }
.why-row.reverse > * { direction: ltr; }
.why-row-photo { position: relative; overflow: hidden; min-height: 360px; }
.why-row-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.why-row:hover .why-row-photo img { transform: scale(1.04); }
.why-row-text {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-card);
}
.why-row-num {
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(34,197,94,.1); margin-bottom: -10px;
  font-variant-numeric: tabular-nums;
}
.why-row-text h3 { font-size: 1.5rem; font-weight: 900; color: var(--text); margin-bottom: 16px; }
.why-row-text p  { color: var(--muted); font-size: .95rem; line-height: 1.9; }
.why-row-check { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.why-check {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--text);
}
.why-check::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-glow); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900;
}

/* ============================================
   PROCESS — 버티컬 타임라인
   ============================================ */
#process { background: var(--bg); padding: 110px 0; }
.process-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.process-left { position: sticky; top: 120px; }
.process-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--text); line-height: 1.25; margin-bottom: 20px; }
.process-left h2 em { color: var(--accent); font-style: normal; }
.process-left p { color: var(--muted); line-height: 1.85; margin-bottom: 36px; }
.process-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 8px 28px var(--accent-glow);
  transition: transform .2s;
}
.process-cta:hover { transform: translateY(-2px); }

.timeline { position: relative; padding-left: 0; }
.tl-item {
  display: flex; gap: 28px; padding-bottom: 44px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 48px;
}
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  transition: border-color .3s, background .3s;
  position: relative; z-index: 1;
}
.tl-item:hover .tl-dot { border-color: var(--accent); background: rgba(34,197,94,.1); }
.tl-line {
  width: 1px; flex: 1; background: var(--border);
  margin-top: 4px; min-height: 32px;
}
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding-top: 10px; }
.tl-step { font-size: .68rem; font-weight: 800; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 6px; }
.tl-body h4 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.tl-body p  { color: var(--muted); font-size: .88rem; line-height: 1.8; }

/* ============================================
   REVIEWS — 대형 인용
   ============================================ */
#reviews { background: var(--bg-2); padding: 110px 0; }
.review-stage {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.review-quote-icon {
  font-size: 5rem; line-height: 1; color: var(--accent); opacity: .25;
  margin-bottom: -20px; display: block;
}
.review-slides { position: relative; overflow: hidden; }
.review-slide { display: none; }
.review-slide.active { display: block; }
.review-text {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.85; color: var(--text);
  margin-bottom: 40px; font-weight: 500;
}
.review-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.review-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
}
.review-meta strong { display: block; font-size: .95rem; font-weight: 800; color: var(--text); }
.review-meta span   { font-size: .8rem; color: var(--muted); }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 6px; letter-spacing: 2px; }

.review-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 52px; }
.rev-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.rev-btn:hover { border-color: var(--accent); color: var(--accent); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: .2s;
}
.rev-dot.active { background: var(--accent); transform: scale(1.5); }

/* ============================================
   CTA — 분할
   ============================================ */
#cta-band {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.cta-left {
  background: var(--accent);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-left h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.cta-left p  { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.75; }
.cta-right {
  background: var(--bg-card);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.cta-item {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: border-color .2s;
  text-decoration: none; color: inherit;
}
.cta-item:hover { border-color: var(--accent); }
.cta-item-icon { font-size: 1.8rem; flex-shrink: 0; }
.cta-item strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.cta-item span   { font-size: .82rem; color: var(--muted); }

/* ============================================
   Q&A — 미니멀
   ============================================ */
#qna { background: var(--bg); padding: 110px 0; }
.qna-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; }
.qna-aside h2 { font-size: 1.9rem; font-weight: 900; color: var(--text); line-height: 1.3; margin-bottom: 16px; }
.qna-aside h2 em { color: var(--accent); font-style: normal; display: block; }
.qna-aside p { color: var(--muted); font-size: .9rem; line-height: 1.8; margin-bottom: 28px; }
.qna-contact {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  transition: background .2s;
}
.qna-contact:hover { background: var(--accent-d); }

.qna-list { display: flex; flex-direction: column; gap: 0; }
.qna-item { border-bottom: 1px solid var(--border); }
.qna-item:first-child { border-top: 1px solid var(--border); }
.qna-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: .96rem; font-weight: 700; color: var(--text);
  transition: color .2s;
}
.qna-q:hover { color: var(--accent); }
.qna-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1; transition: transform .3s, border-color .3s, color .3s;
}
.qna-item.open .qna-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.qna-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.qna-item.open .qna-a { max-height: 300px; padding-bottom: 20px; }
.qna-a p { color: var(--muted); line-height: 1.85; font-size: .92rem; }
.qna-item.qna-hidden { display: none; }
.qna-more-wrap { text-align: right; margin-top: 16px; }
#btnQnaMore {
  background: none; border: none; color: var(--muted);
  font-size: .85rem; cursor: pointer; transition: color .2s;
}
#btnQnaMore:hover { color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
#site-footer { background: #040810; padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.footer-logo-text strong { font-size: .98rem; font-weight: 900; color: var(--white); }
.footer-desc { font-size: .83rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.footer-tel { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.footer-col h5 { font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: .75rem; color: rgba(255,255,255,.2);
}
.bizinfo { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   FLOATING
   ============================================ */
.float-contact { position: fixed; right: 28px; bottom: 36px; display: flex; flex-direction: column; gap: 12px; z-index: 800; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--accent); color: #fff; box-shadow: 0 4px 24px var(--accent-glow); }
.float-top  { background: var(--bg-card); color: var(--text); font-size: .9rem; border: 1px solid var(--border); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.8); }
.mobile-nav.open { display: flex; }
.mobile-nav-panel {
  background: var(--bg-2); width: 300px; height: 100%;
  padding: 36px 28px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border);
}
.mobile-nav-panel .close-btn { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); margin-bottom: 16px; }
.mobile-nav-panel { background: var(--white); }
.mobile-nav-panel a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--muted); transition: color .2s; }
.mobile-nav-panel a:hover { color: var(--accent); }
.mobile-nav-panel .tel-row { margin-top: 24px; background: var(--bg-card); border-radius: 10px; padding: 16px; border: 1px solid var(--border); }
.mobile-nav-panel .tel-row strong { display: block; color: var(--accent); font-size: 1.1rem; }
.mobile-nav-panel .tel-row span   { font-size: .75rem; color: var(--muted); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.97); flex-direction: column; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-main { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; flex: 1; min-height: 0; padding: 0 64px; }
.lb-main img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lb-vid { display: none; max-width: 100%; max-height: 80vh; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-arrow:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-close { position: fixed; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 10000; }
.lb-counter { position: fixed; top: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); font-size: .82rem; }
.lb-footer { width: 100%; padding: 8px 16px 16px; display: flex; align-items: center; justify-content: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.lb-footer::-webkit-scrollbar { display: none; }
.lb-dot { flex: 0 0 60px; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; cursor: pointer; opacity: .35; border: 2px solid transparent; transition: opacity .2s, border-color .2s; }
.lb-dot.active { opacity: 1; border-color: var(--accent); }
.lb-dot img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1100px) {
  .hero-inner { gap: 40px; }
  .svc-row { grid-template-columns: 80px 1fr 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { height: 380px; }
  .why-row { grid-template-columns: 1fr; }
  .why-row.reverse { direction: ltr; }
  .why-row-photo { min-height: 280px; }
  .process-inner { grid-template-columns: 1fr; }
  .process-left { position: static; }
  #cta-band { grid-template-columns: 1fr; }
  .qna-layout { grid-template-columns: 1fr; gap: 40px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gm-wide, .gm-big { grid-column: span 1; }
  .gm-tall, .gm-big { grid-row: span 1; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row-photo { display: none; }
}
@media(max-width:768px) {
  .container { padding: 0 20px; }
  .nav-menu, .header-cta .btn-consult { display: none; }
  .hamburger { display: block; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .hero-collage { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0; }
  .cta-left, .cta-right { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
@media(max-width:480px) {
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
