/* ============================================================
   YQG Services — shared stylesheet (tier-2 multi-page site)
   One source of truth for the whole site. Navy + orange brand.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1e3a5f;
  --navy-deep:   #142640;
  --navy-light:  #2a4870;
  --orange:      #f5811f;
  --orange-deep: #d96d10;
  --orange-soft: #ff9a3d;
  --white:       #ffffff;
  --off:         #f7f8fa;
  --paper:       #eef0f4;
  --line:        #e5e7eb;
  --line-dark:   rgba(255,255,255,0.08);
  --text:        #1f2937;
  --muted:       #6b7280;
  --muted-soft:  #9ca3af;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section[id], div[id] { scroll-margin-top: 90px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; line-height: 1; letter-spacing: -0.005em; color: var(--navy); }

/* Manrope for body descriptions */
.hero-sub, .section-sub, .svc-row .svc-body p, .process-step p,
.why-item-text p, .area-call-card p, .rev-quote, .quote-text > p,
.footer-brand p, .page-hero p, .detail-row .detail-body p,
.about-lead, .gallery-intro p { font-family: 'Manrope', sans-serif; letter-spacing: -0.005em; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.75rem; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { width: 50px; height: 50px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: 0.02em; color: var(--navy); text-transform: uppercase; }
.nav-logo-text span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text); transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--orange);
}

.nav-right { display: flex; align-items: center; gap: 0.85rem; }
.nav-phone { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); white-space: nowrap; letter-spacing: 0.02em; }
.nav-phone:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.65rem 1.25rem; border-radius: 4px;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--off); border: 1px solid var(--line);
  border-radius: 4px; color: var(--navy);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.nav-ig:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-1px); }
#nav-burger { display: none; background: var(--off); border: 1px solid var(--line); border-radius: 4px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
#mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem; padding: 2rem; }
#mobile-menu.open { display: flex; }
#mobile-menu a.mobile-link { font-family: 'Barlow Condensed', sans-serif; font-size: 1.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; }
#mobile-menu a.mobile-link:hover, #mobile-menu a.mobile-link.active { color: var(--orange-soft); }
/* Keep the menu's call button at its natural size (the hero buttons use flex:1 to share a row; in this vertical menu that would stretch it). */
#mobile-menu .btn-primary { flex: 0 0 auto; }
#mobile-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; background: var(--orange); color: var(--white); border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 1.85rem; border-radius: 4px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem 1.85rem; border-radius: 4px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ===== HERO (home) ===== */
#hero {
  position: relative; padding: 96px 1.75rem 4rem;
  background: linear-gradient(180deg, var(--off) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  min-height: calc(100vh - 96px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--orange-deep);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 800;
  line-height: 0.92; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero-h1 .accent { color: var(--orange); }
.hero-sub { font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 50ch; margin-bottom: 2.5rem; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.75rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.25rem; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.hero-stat .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero-visual { position: relative; }
.hero-slideshow { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: var(--navy); box-shadow: 0 24px 55px -22px rgba(30,58,95,0.32); }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease-in-out; }
.hero-slide.show { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  position: relative; margin-top: 0; padding: 140px 1.75rem 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,129,31,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--orange-soft); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif; color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1rem; text-transform: uppercase;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { font-size: 1.08rem; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 62ch; }

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--orange); color: var(--white);
  padding: 0.85rem 0; overflow: hidden;
  border-top: 3px solid var(--orange-deep);
  border-bottom: 3px solid var(--orange-deep);
}
.trust-track { display: inline-flex; white-space: nowrap; animation: trust-scroll 35s linear infinite; }
.trust-item {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0 2rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.7); flex-shrink: 0; }
@keyframes trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION UTILS ===== */
section { padding: 5.5rem 1.75rem; }
.container { max-width: 1320px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; max-width: 720px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.85rem;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1rem; text-transform: uppercase;
}
.section-h2 .accent { color: var(--orange); }
.section-sub { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 60ch; }

/* ===== SERVICE OVERVIEW CARDS (home) ===== */
#services-overview { background: var(--off); }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(30,58,95,0.3); border-color: var(--orange); }
.svc-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper); }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.05; }
.svc-card-body p { font-size: 0.93rem; line-height: 1.6; color: var(--muted); margin-bottom: 1.25rem; flex: 1; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-deep);
  transition: gap .2s, color .2s;
}
.svc-card-link:hover { gap: 0.7rem; color: var(--orange); }

/* ===== SERVICES manifest list (service pages) ===== */
#services { background: var(--off); }
.services-divider {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem;
  margin: 2.75rem 0 1.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
}
.services-divider::before, .services-divider::after { content: ''; height: 1px; background: var(--line); }
.services-divider::before { background: linear-gradient(90deg, transparent, var(--line)); }
.services-divider::after { background: linear-gradient(90deg, var(--line), transparent); }
.services-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: 90px 1fr 220px; gap: 2.5rem; align-items: center;
  padding: 2rem 1.5rem 2rem 0.5rem; border-bottom: 1px solid var(--line);
  position: relative; transition: background .25s, padding-left .25s; cursor: default;
}
.svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--orange);
  transform: scaleY(0); transform-origin: center; transition: transform .25s;
}
.svc-row:hover { background: var(--white); padding-left: 1.5rem; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row .svc-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3.5rem; color: var(--navy); line-height: 0.85; letter-spacing: -0.02em; }
.svc-row .svc-num small { display: block; font-size: 0.65rem; font-weight: 600; color: var(--orange); letter-spacing: 0.16em; margin-top: 0.4rem; }
.svc-row .svc-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.85rem; font-weight: 700; letter-spacing: 0.005em; margin-bottom: 0.5rem; line-height: 1.05; }
.svc-row .svc-body p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); margin-bottom: 0.85rem; max-width: 56ch; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc-tag {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px;
  background: rgba(30,58,95,0.06); color: var(--navy); border: 1px solid rgba(30,58,95,0.1);
}
.svc-thumb { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; position: relative; background: var(--paper); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: filter .35s, transform .6s cubic-bezier(.22,1,.36,1); }
.svc-row:hover .svc-thumb img { filter: grayscale(0); transform: scale(1.06); }
.svc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(30,58,95,0.15)); pointer-events: none; }

/* ===== PROCESS ===== */
#process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 2.5rem; background: var(--navy); border-radius: 6px; overflow: hidden; }
.process-step { color: var(--white); padding: 2.5rem 2.1rem; }
.process-step + .process-step { border-left: 1px solid rgba(255,255,255,0.12); }
.process-step .step-num { display: none; }
.process-step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; line-height: 1.1; }
.process-step p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.75); }

/* ===== WHY US ===== */
#why { background: var(--off); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.why-visual { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(20,38,64,0.95), transparent); padding: 2rem 1.75rem 1.5rem; }
.why-visual-overlay strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--white); display: block; line-height: 1.1; }
.why-visual-overlay span { font-size: 0.8rem; color: var(--orange-soft); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--white); border: 2px solid var(--orange); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
.why-item-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.35rem; line-height: 1.05; }
.why-item-text p { font-size: 0.92rem; line-height: 1.65; color: var(--muted); }

/* ===== SERVICE AREA ===== */
#area { background: var(--navy); color: var(--white); padding: 5rem 1.75rem; }
#area .section-h2 { color: var(--white); }
#area .section-tag { color: var(--orange-soft); }
#area .section-tag::before { background: var(--orange-soft); }
#area .section-sub { color: rgba(255,255,255,0.7); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.area-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; list-style: none; padding: 0; }
.area-cities li { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--white); letter-spacing: 0.02em; padding: 0.4rem 0.85rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; display: inline-flex; align-items: center; gap: 0.5rem; }
.area-cities li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.area-call-card { background: var(--white); color: var(--text); padding: 2.5rem; border-radius: 6px; border-top: 4px solid var(--orange); }
.area-call-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.85rem; font-weight: 800; color: var(--navy); margin-bottom: 0.8rem; line-height: 1; }
.area-call-card p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.65; }
.area-call-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.4rem; letter-spacing: 0.01em; }
.area-call-num:hover { color: var(--orange-deep); }
.area-call-meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ===== TESTIMONIALS - Job Log ===== */
#testimonials { background: var(--white); }
/* Reviews carousel */
.reviews { margin-top: 2.5rem; position: relative; }
.rev-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 0.5rem 0.25rem 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
@media (prefers-reduced-motion: reduce) { .rev-track { scroll-behavior: auto; } }
.rev-track::-webkit-scrollbar { display: none; }
.rev-card { flex: 0 0 auto; width: min(420px, 80vw); scroll-snap-align: start; background: var(--off); border: 1px solid var(--line); border-top: 3px solid var(--orange); border-radius: 4px; padding: 1.85rem 1.75rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--orange); font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 1rem; }
.rev-quote { font-size: 1rem; line-height: 1.7; color: var(--text); position: relative; flex: 1; }
.rev-quote::before { content: '\201C'; display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--orange); line-height: 0.6; margin-bottom: 0.4rem; }
.rev-sig { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.rev-sig::before { content: ''; width: 18px; height: 1px; background: var(--orange); flex-shrink: 0; }
.rev-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.rev-tag { font-size: 0.72rem; font-family: 'Inter', sans-serif; font-weight: 600; padding: 0.18rem 0.55rem; background: rgba(245,129,31,0.12); color: var(--orange-deep); border-radius: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.rev-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(30,58,95,0.12); transition: background .2s, color .2s, opacity .2s; }
.rev-nav:hover { background: var(--navy); color: var(--white); }
.rev-prev { left: -10px; }
.rev-next { right: -10px; }
.rev-nav:disabled { opacity: 0; pointer-events: none; }
.rev-foot { margin-top: 0.5rem; padding: 1rem 1.5rem; background: var(--navy-deep); color: rgba(255,255,255,0.65); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-radius: 4px; }
.rev-foot a { color: var(--orange-soft); }
.rev-foot a:hover { color: var(--orange); }

/* ===== QUOTE / CTA ===== */
#quote { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); position: relative; overflow: hidden; }
#quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(245,129,31,0.15) 0%, transparent 60%); pointer-events: none; }
.quote-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; position: relative; }
.quote-text .section-tag { color: var(--orange-soft); }
.quote-text .section-tag::before { background: var(--orange-soft); }
.quote-text h2 { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.25rem, 4.5vw, 3.6rem); line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1.25rem; text-transform: uppercase; }
.quote-text h2 .accent { color: var(--orange); }
.quote-text > p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 50ch; margin-bottom: 2rem; }
.quote-perks { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.quote-perks li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.quote-perks li::before { content: ''; width: 22px; height: 22px; background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; border-radius: 50%; flex-shrink: 0; }
.quote-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.quote-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.quote-actions .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.quote-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 2.5rem; border-radius: 6px; }
.quote-form h3 { font-family: 'Barlow Condensed', sans-serif; color: var(--white); font-size: 1.5rem; margin-bottom: 0.4rem; font-weight: 700; }
.quote-form > p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.95rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.55); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.93rem; padding: 0.85rem 1rem; border-radius: 4px; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 84px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-submit { width: 100%; background: var(--orange); color: var(--white); border: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem; border-radius: 4px; cursor: pointer; transition: background .2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--orange-deep); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.85rem; text-align: center; }

/* centered CTA band (interior pages) */
.cta-center { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-center .section-tag, .cta-center .quote-actions { justify-content: center; }
.cta-center h2 { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.25rem, 4.5vw, 3.6rem); line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1.25rem; text-transform: uppercase; }
.cta-center h2 .accent { color: var(--orange); }
.cta-center > p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 52ch; margin: 0 auto 2rem; }

/* form success message (light pages) */
.form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; background: var(--off); border: 1px solid var(--line); border-top: 3px solid var(--orange); border-radius: 10px; }
.form-success .fs-icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(74,222,128,0.15); color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; }
.form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* honeypot — hidden from humans */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ===== SERVICE DETAIL ROWS (alternating) ===== */
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4.5rem; }
.detail-row:last-child { margin-bottom: 0; }
.detail-row.flip .detail-visual { order: 2; }
.detail-visual { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 50px -25px rgba(30,58,95,0.4); background: var(--paper); }
.detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.detail-body .detail-kicker { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.detail-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1; margin-bottom: 1rem; text-transform: uppercase; }
.detail-body p { font-size: 1rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.25rem; }
.detail-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.25rem; }
.detail-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.92rem; color: var(--text); font-weight: 500; }
.detail-list li::before { content: ''; flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; border-radius: 50%; }

/* ===== GALLERY ===== */
.gallery-intro { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.gallery-filter { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.55rem 1.2rem; border-radius: 4px; border: 1px solid var(--line); background: var(--white); color: var(--navy); cursor: pointer; transition: all .2s; }
.gallery-filter:hover { border-color: var(--orange); color: var(--orange-deep); }
.gallery-filter.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: var(--paper); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem 0.85rem; background: linear-gradient(to top, rgba(20,38,64,0.9), transparent); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .gallery-tag { opacity: 1; }
.gallery-item.hidden { display: none; }

/* ===== ABOUT ===== */
.about-lead { font-size: 1.15rem; line-height: 1.75; color: var(--text); max-width: 70ch; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1rem; }
.about-stat { text-align: center; padding: 1.75rem 1rem; background: var(--off); border: 1px solid var(--line); border-radius: 8px; border-top: 3px solid var(--orange); }
.about-stat .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--navy); line-height: 1; }
.about-stat .label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 0.5rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-info-card { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--off); border: 1px solid var(--line); border-radius: 8px; }
.contact-line-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--white); border: 2px solid var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
.contact-line-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-line-text p, .contact-line-text a { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.contact-line-text a:hover { color: var(--orange-deep); }
/* contact form re-uses .quote-form but on light bg */
.contact-form-wrap { background: var(--navy); border-radius: 10px; padding: 0.5rem; }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); color: var(--white); padding: 3.5rem 1.75rem 1.75rem; border-top: 4px solid var(--orange); }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 32ch; margin-top: 1.25rem; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange-soft); }
.footer-call { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 0.4rem; line-height: 1; }
.footer-call:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--orange-soft); }

/* ===== MOBILE STICKY CTA ===== */
#mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--navy); border-top: 2px solid var(--orange); grid-template-columns: 1fr 1fr; height: 60px; }
.mcta-btn { display: flex; align-items: center; justify-content: center; gap: 0.45rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); transition: background .2s; }
.mcta-btn:first-child { background: var(--orange); }
.mcta-btn:first-child:active { background: var(--orange-deep); }
.mcta-btn:last-child:active { background: var(--navy-light); }

/* ===== CHAT WIDGET ===== */
#cw-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: var(--orange); border: none; cursor: pointer; box-shadow: 0 6px 22px rgba(245,129,31,0.4), 0 2px 8px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; }
#cw-btn:hover { transform: scale(1.08); background: var(--orange-deep); }
#cw-btn .cw-notif { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; background: #ef4444; border-radius: 50%; border: 2px solid var(--white); }
#cw-box { position: fixed; bottom: 100px; right: 24px; z-index: 998; width: 360px; max-width: calc(100vw - 32px); border-radius: 12px; overflow: hidden; box-shadow: 0 12px 50px rgba(20,38,64,0.28); display: none; flex-direction: column; transform: translateY(14px); opacity: 0; transition: transform 0.25s ease, opacity 0.25s ease; background: var(--white); }
#cw-box.open { display: flex; }
#cw-box.visible { transform: translateY(0); opacity: 1; }
.cw-head { background: var(--navy); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--orange); }
.cw-head-left { display: flex; align-items: center; gap: 12px; }
.cw-av { width: 42px; height: 42px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 2px solid var(--orange); }
.cw-av img { width: 100%; height: 100%; object-fit: cover; }
.cw-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; }
.cw-status { font-size: 0.72rem; color: #4ade80; margin-top: 4px; display: flex; align-items: center; gap: 5px; font-weight: 500; }
.cw-status::before { content: ''; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
.cw-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; padding: 4px 6px; transition: color 0.2s; line-height: 1; }
.cw-close:hover { color: var(--white); }
.cw-msgs { background: var(--off); padding: 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.cw-bubble { background: var(--white); border-radius: 0 12px 12px 12px; padding: 12px 15px; font-size: 0.88rem; color: var(--text); line-height: 1.6; max-width: 92%; box-shadow: 0 1px 4px rgba(0,0,0,0.06); font-family: 'Inter', sans-serif; }
.cw-bubble b { color: var(--navy); font-weight: 700; }
.cw-form { background: var(--white); padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.cw-input { width: 100%; border: 1px solid var(--line); border-radius: 5px; padding: 11px 13px; font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--text); outline: none; transition: border-color 0.2s; box-sizing: border-box; background: var(--white); }
.cw-input:focus { border-color: var(--orange); }
.cw-textarea { resize: none; height: 76px; }
.cw-send { width: 100%; background: var(--orange); color: var(--white); border: none; border-radius: 5px; padding: 13px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.cw-send:hover { background: var(--orange-deep); }
.cw-success { background: var(--white); padding: 36px 22px; text-align: center; display: none; flex-direction: column; align-items: center; gap: 12px; }
.cw-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(74,222,128,0.15); display: flex; align-items: center; justify-content: center; color: #16a34a; font-size: 1.75rem; font-weight: 800; }
.cw-success h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--navy); letter-spacing: 0.02em; }
.cw-success p { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.cw-success a { color: var(--orange); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 64px 1fr 140px; gap: 1.25rem; padding: 1.5rem 1rem; }
  .svc-row .svc-num { font-size: 2.5rem; }
  .svc-row .svc-body h3 { font-size: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step + .process-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-visual { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
  .area-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-row, .detail-row.flip { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 3rem; }
  .detail-row.flip .detail-visual { order: 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rev-card { width: 84vw; padding: 1.5rem 1.35rem; }
  .reviews { padding-bottom: 76px; }
  .rev-track { padding-bottom: 0.5rem; }
  .rev-nav { top: auto; bottom: 13px; transform: none; width: 44px; height: 44px; }
  .rev-prev { left: calc(50% - 52px); right: auto; }
  .rev-next { right: calc(50% - 52px); left: auto; }
  .rev-nav:disabled { opacity: 0.35; pointer-events: none; }
  .rev-foot { flex-direction: column; align-items: flex-start; gap: 0.5rem; text-align: left; }
  .quote-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0.7rem 1.1rem; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-logo-text span { display: none; }
  .nav-logo img { width: 42px; height: 42px; }
  .nav-logo-text strong { font-size: 1.05rem; }
  #nav-burger { display: flex; }
  .nav-cta { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
  .nav-ig { display: none; }

  section { padding: 4rem 1.25rem; }
  #hero { padding: 80px 1.25rem 3rem; }
  .page-hero { padding: 110px 1.25rem 3rem; }
  .hero-grid { gap: 2.25rem; min-height: auto; }
  .hero-h1 { font-size: clamp(3.2rem, 13.5vw, 4.6rem); line-height: 0.9; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.85rem; }
  .hero-actions { gap: 0.6rem; margin-bottom: 2rem; }
  .btn-primary, .btn-outline { padding: 0.85rem 1.35rem; font-size: 0.95rem; flex: 1 1 auto; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.75rem; padding-top: 1.5rem; }
  .hero-stat .num { font-size: 1.85rem; }

  .trust-item { font-size: 0.92rem; padding: 0 1.25rem; }

  .section-header { margin-bottom: 2.25rem; }
  .section-h2 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.5rem 0.5rem; }
  .svc-row .svc-thumb { display: none; }
  .svc-row .svc-num { font-size: 2.25rem; }
  .svc-row .svc-num small { font-size: 0.55rem; }
  .svc-row .svc-body h3 { font-size: 1.4rem; }
  .svc-row .svc-body p { font-size: 0.9rem; }
  .svc-tag { font-size: 0.7rem; padding: 0.25rem 0.55rem; }
  .services-divider { font-size: 0.7rem; gap: 0.85rem; margin: 2rem 0 0.85rem; }

  .detail-list { grid-template-columns: 1fr; }
  .process-grid { margin-top: 1.75rem; }
  .process-step { padding: 1.4rem 1.4rem; }
  .process-step h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
  .process-step p { font-size: 0.86rem; line-height: 1.5; }
  .why-list { margin-top: 1.5rem; gap: 1.25rem; }
  .area-call-card { padding: 1.85rem 1.5rem; }
  .area-call-num { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 2rem; }
  .gallery-filter { width: 100%; padding: 0.75rem 0.5rem; text-align: center; }

  .quote-form { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  #mobile-cta { display: grid; }
  body { padding-bottom: 72px; }
  #cw-btn { bottom: 76px; right: 16px; width: 54px; height: 54px; }
  #cw-box { right: 16px; bottom: 140px; width: calc(100vw - 32px); }
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-item { cursor: pointer; }
.lightbox { position: fixed; inset: 0; background: rgba(15,28,46,0.93); display: none; align-items: center; justify-content: center; z-index: 200; padding: 3.5rem 1rem; opacity: 0; transition: opacity .2s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox .lb-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 4px; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lb-close { position: absolute; top: 1rem; right: 1.4rem; background: none; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: .85; padding: 0; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 2.2rem; line-height: 1; width: 3rem; height: 3.8rem; cursor: pointer; border-radius: 5px; opacity: .8; display: flex; align-items: center; justify-content: center; }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { opacity: 1; background: rgba(255,255,255,0.22); }
.lb-cap { position: absolute; bottom: 1.2rem; left: 0; right: 0; text-align: center; color: #d4dded; font-size: 0.9rem; letter-spacing: 0.02em; }
@media (max-width: 640px) { .lightbox { padding: 2.5rem 0.5rem; } .lb-prev, .lb-next { font-size: 1.5rem; width: 2.3rem; height: 3rem; } .lb-close { font-size: 2.2rem; right: 1rem; } }
