:root {
  --bg-page: #F4F4F3;
  --bg-alt: #EAEAE9;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6A;
  --text-muted: #9A9A98;
  --border: #DADAD9;
  --footer-bg: #2A2A28;
  --footer-text: #EDEDEC;
  --footer-text-muted: #A8A8A5;

  --c-corporate: #EC2027;
  --c-conferences: #F78F1F;
  --c-tradeshows: #F9E80A;
  --c-ledvideo: #78C35F;
  --c-audio: #6FC8B6;
  --c-lighting: #4FC8EC;
  --c-broadcast: #4394D0;
  --c-showcontrol: #3A72B9;

  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 180px;
  --header-h-scrolled: 120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-anchor: none; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0; }
.eyebrow { font-size: 13px; letter-spacing: .04em; color: var(--text-secondary); text-transform: uppercase; margin: 0 0 6px; }
.eyebrow-carousel { font-size: 18px; font-weight: 500; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 500;
  height: var(--header-h);
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  transition: height .3s ease;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 0 40px;
}
header.site-header.scrolled { height: var(--header-h-scrolled); }
.header-logo { padding-top: 24px; }
.header-right { display: flex; align-items: center; gap: 28px; height: 100%; }
nav.main-nav { display: flex; gap: 28px; }
nav.main-nav a {
  text-decoration: none; color: var(--text-primary);
  font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
}
nav.main-nav a:hover { color: var(--text-secondary); }
.header-actions { display: flex; align-items: center; gap: 14px; position: relative; }
.hamburger-btn {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.hamburger-btn span { display: block; width: 18px; height: 2px; background: var(--text-primary); transition: transform .25s ease, opacity .25s ease; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg-page); border-bottom: 1px solid var(--border);
  padding: 8px 20px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0; text-decoration: none; color: var(--text-primary);
  font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text-primary); text-decoration: none;
}
.icon-btn:hover { border-color: var(--text-secondary); }
.quote-icon-btn { display: none; }
.btn-quote {
  border: 1px solid var(--text-primary); background: transparent;
  padding: 10px 20px; border-radius: 4px; font-size: 13px; font-weight: 500;
  letter-spacing: .03em; text-transform: uppercase; cursor: pointer;
  color: var(--text-primary); text-decoration: none;
}
.btn-quote:hover { background: var(--text-primary); color: var(--bg-page); }

/* Phone popover */
.phone-popover {
  position: absolute; top: 52px; right: 0; width: 240px;
  background: var(--footer-bg); border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  padding: 16px; box-shadow: 0 6px 20px rgba(0,0,0,.25);
  display: none; font-size: 14px;
}
.phone-popover.open { display: block; }
.phone-popover a { color: #fff; text-decoration: none; font-weight: 500; }
.phone-popover p { margin: 0 0 6px; color: var(--footer-text-muted); }

/* In-place success state (replaces the form fields after a successful send) */
.form-success { text-align: center; padding: 10px 0; }
.form-success .confirm-icon {
  width: 52px; height: 52px; border-radius: 50%; background: #E8F5EC; color: #1A7A4C;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.form-success h3 { font-size: 18px; margin-bottom: 8px; }
.form-success p { font-size: 14px; margin-bottom: 22px; color: var(--text-secondary); }
.form-success .confirm-close {
  background: var(--text-primary); color: #fff; border: none; border-radius: 4px;
  padding: 10px 24px; font-size: 14px; font-weight: 500; cursor: pointer;
}
/* Dark variant, inside the charcoal quote drawer */
.quote-modal .form-success h3 { color: #fff; }
.quote-modal .form-success p { color: var(--footer-text-muted); }
.quote-modal .form-success .confirm-close { background: #fff; color: var(--footer-bg); }

/* Quote drawer (slides in from the right, charcoal, vertically centered) */
.quote-modal-backdrop {
  position: fixed; inset: 0; background: rgba(20,20,20,0); z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, background .3s ease, visibility 0s linear .3s;
}
.quote-modal-backdrop.open {
  opacity: 1; visibility: visible; background: rgba(20,20,20,.45);
  transition: opacity .3s ease, background .3s ease, visibility 0s linear 0s;
}
.quote-modal {
  position: fixed; top: 50%; right: 0; width: 420px; max-width: 92vw;
  max-height: 88vh; overflow-y: auto;
  background: var(--footer-bg); color: var(--footer-text);
  padding: 36px 32px; border-radius: 12px 0 0 12px;
  transform: translateY(-50%) translateX(100%);
  transition: transform .35s ease;
  box-shadow: -10px 0 32px rgba(0,0,0,.35);
}
.quote-modal-backdrop.open .quote-modal { transform: translateY(-50%) translateX(0); }
.quote-modal .drawer-logo { text-align: center; margin-bottom: 22px; }
.quote-modal h3 { font-size: 20px; margin: 6px 0 6px; color: #fff; }
.quote-modal p.sub { color: var(--footer-text-muted); font-size: 14px; margin: 0 0 20px; }
.quote-modal .quick-contact-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--footer-text-muted); margin: 0 0 8px;
}
.quote-modal .quick-contact {
  display: flex; flex-direction: column; gap: 5px;
  margin: 0 0 24px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.quote-modal .quick-contact a { color: #fff; font-size: 14px; font-weight: 500; text-decoration: none; }
.quote-modal .quick-contact a:hover { text-decoration: underline; }
.quote-modal .name-row { display: flex; gap: 12px; }
.quote-modal .name-row input { width: auto; flex: 1; min-width: 0; }
.quote-modal input, .quote-modal textarea {
  width: 100%; padding: 10px 12px; margin-bottom: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; font-family: var(--font-body); font-size: 14px; color: #fff;
}
.quote-modal input::placeholder, .quote-modal textarea::placeholder { color: var(--footer-text-muted); }
.quote-modal textarea { min-height: 100px; resize: vertical; }
.quote-modal .close-x {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--footer-text-muted);
}
.quote-modal .close-x:hover { color: #fff; }
.quote-modal button.submit {
  width: 100%; padding: 12px; background: #fff; color: var(--footer-bg);
  border: none; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  width: 100%; aspect-ratio: 3840 / 1300; position: relative;
  background: #cfcfcd; overflow: hidden;
}
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero.hero-short { aspect-ratio: 3840 / 620; }
.hero-band {
  position: absolute; left: 0; right: 0; bottom: 12%;
  background: rgba(42,42,40,.55);
  padding: 22px 0;
}
.hero .hero-copy { max-width: 640px; width: fit-content; margin: 0 0 0 6%; color: #fff; position: relative; }
.hero .hero-copy--overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center;
}
.hero .hero-copy h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.2; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .02em; }
.hero .hero-copy .hero-line1 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: .01em;
  color: #fff; margin: 0;
}
.hero .hero-copy .hero-line2 {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  font-size: clamp(19px, 2.5vw, 28px); letter-spacing: .09em;
  color: #fff; margin: -8px 0 0 36px;
}
.hero .hero-copy .btn-quote { border-color: #fff; color: #fff; }
.hero .hero-copy .btn-quote:hover { background: #fff; color: var(--text-primary); }

/* ---------- Intro ---------- */
.intro { max-width: 780px; margin: 0 auto; padding: 90px 24px 60px; text-align: left; }
.intro p { font-size: 17px; color: var(--text-secondary); margin: 0 0 18px; }

/* ---------- Services tile grid ---------- */
.tiles-section { padding: 0 40px 90px; }
.tiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1280px; margin: 0 auto; }
.tile {
  position: relative; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden;
  cursor: pointer; transition: box-shadow .3s ease;
}
.tile:hover { box-shadow: 0 0 0 10px var(--accent); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.tile .tile-tint {
  position: absolute; inset: 0; background: var(--accent);
  mix-blend-mode: color; opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.tile:hover .tile-tint { opacity: 1; }
.tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0) 60%);
}
.tile .label { position: absolute; left: 16px; bottom: 14px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .02em; }

/* ---------- Proof bar ---------- */
.proof-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 30px 40px; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px 48px;
}
.proof-bar .stat { text-align: center; }
.proof-bar .stat .num { font-family: var(--font-head); font-weight: 700; font-size: 22px; }
.proof-bar .stat .label { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Logo carousel ---------- */
.logo-carousel { padding: 50px 0 90px; overflow: hidden; }
.logo-row { display: flex; gap: 40px; width: max-content; margin-bottom: 20px; }
.logo-row.left { animation: scrollLeft 60s linear infinite; }
.logo-row.right { animation: scrollRight 60s linear infinite; }
.logo-row .logo-item {
  width: 160px; height: 88px; display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: .55; transition: filter .3s ease, opacity .3s ease;
}
.logo-row .logo-item:hover { filter: grayscale(0); opacity: 1; }
.logo-row .img-wrap { display: flex; align-items: center; justify-content: center; }
.logo-row .img-wrap img.fill {
  position: static; width: auto; height: auto;
  max-width: 100%; max-height: 100%; object-fit: contain;
}
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .logo-row.left, .logo-row.right { animation-duration: 240s; }
}

/* ---------- Closing split ---------- */
.closing-wrap { position: relative; }
.closing {
  display: grid; grid-template-columns: minmax(360px, 1fr) 2fr; min-height: 78vh;
}
.closing .copy-side {
  display: flex; flex-direction: column; justify-content: center; padding: 60px 8%;
}
.closing .copy-side h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 22px; text-transform: uppercase; letter-spacing: .01em; }
.closing .copy-side p { color: var(--text-secondary); margin-bottom: 28px; max-width: 420px; }
.closing .photo-side { position: relative; height: 78vh; overflow: hidden; }
.closing .photo-side img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative; z-index: 5;
  background: var(--footer-bg); color: var(--footer-text);
  padding: 70px 40px 30px;
}
.footer-logo { text-align: center; margin-bottom: 40px; }
.footer-logo img { height: 54px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; max-width: 700px; margin: 0 auto; gap: 40px; text-align: center; }
.footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 16px; }
.footer-cols a, .footer-cols p { display: block; color: var(--footer-text-muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { text-align: center; margin-top: 50px; font-size: 12px; color: var(--footer-text-muted); }

/* ---------- Placeholder photo ---------- */
.img-wrap { position: relative; width: 100%; height: 100%; }
.img-wrap .fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; height: 100%; background: var(--bg-alt);
  border: 1px dashed var(--border); color: var(--text-muted);
  font-size: 12px; line-height: 1.5; padding: 8px;
}
.img-wrap-inline { position: relative; display: inline-block; }
.img-wrap-inline .logo-img { height: 96px; width: auto; transition: height .3s ease; display: block; }
header.site-header.scrolled .img-wrap-inline .logo-img { height: 60px; }
.img-wrap-inline .photo-placeholder.logo-ph { display: none; width: 220px; height: 70px; }

/* ---------- Contact page ---------- */
.contact-layout {
  max-width: 1300px; margin: 0 auto; padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px;
}
.contact-info, .contact-form-panel { min-width: 0; }
.contact-info h2 { font-size: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; line-height: 1.15; margin-bottom: 4px; }
.contact-subhead { font-family: var(--font-head); font-weight: 500; text-transform: uppercase; font-size: 15px; letter-spacing: .04em; line-height: 1.2; color: var(--text-secondary); margin: 0 0 18px; }
.contact-info .office { margin-bottom: 30px; }
.contact-info .office h3 { font-family: var(--font-head); font-size: 15px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.contact-info .office p { margin: 0 0 6px; color: var(--text-secondary); font-size: 15.5px; }
.contact-info .office a { color: var(--text-primary); font-weight: 500; text-decoration: none; font-size: 16px; }
.contact-info .office a:hover { text-decoration: underline; }
.contact-info .office .note { font-style: italic; color: var(--text-muted); font-size: 13.5px; }

.contact-form-panel { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 44px; }
.contact-form-panel input, .contact-form-panel textarea {
  width: 100%; padding: 13px 16px; margin-bottom: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; color: var(--text-primary);
}
.contact-form-panel textarea { min-height: 150px; resize: vertical; }
.contact-form-panel .name-row { display: flex; gap: 14px; }
.contact-form-panel .name-row input { width: auto; flex: 1; min-width: 0; }
.contact-form-panel button.submit {
  width: 100%; padding: 14px; background: var(--text-primary); color: #fff;
  border: none; border-radius: 4px; font-size: 15px; font-weight: 500; cursor: pointer;
}

/* Static map panels (Contact page) */
.maps-row { display: grid; grid-template-columns: 1fr 1fr; }
.map-panel {
  position: relative; display: block; overflow: hidden;
  background: var(--bg-alt);
  height: 340px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  color: var(--text-muted); transition: color .2s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
  pointer-events: none;
}
.map-panel:hover .map-pin { color: #EC2027; }
.map-title {
  position: absolute; top: 18px; left: 0; right: 0; text-align: center;
  color: #fff; font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em; font-size: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.35);
  pointer-events: none;
}

.team-overlay .email-short { display: none; }

@media (max-width: 900px) {
  .maps-row { grid-template-columns: 1fr; }
  .map-panel { height: 240px; }
  .map-title { display: none; }
  .map-pin { color: #EC2027; }
  .hero-band { padding: 8px 0; }
  .team-overlay .email-full { display: none; }
  .team-overlay .email-short { display: inline; }
  .contact-layout { grid-template-columns: 1fr; padding: 60px 20px; }
}
.hp-field { display: none !important; position: absolute; left: -9999px; top: -9999px; }
.form-status { font-size: 13px; margin: 0; min-height: 0; }
.form-status:not(:empty) { margin: -4px 0 12px; }
.form-status.success { color: #1A7A4C; }
.form-status.error { color: #B3261E; }
.quote-modal button.submit:disabled,
.contact-form-panel button.submit:disabled { opacity: .6; cursor: not-allowed; }

/* ---------- Team page ---------- */
.story-section { max-width: 780px; margin: 0 auto; padding: 90px 24px 40px; }
.story-section p { font-size: 16.5px; line-height: 1.7; color: var(--text-secondary); margin: 0 0 20px; }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 1300px; margin: 0 auto; padding: 40px 40px 110px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  cursor: pointer;
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.team-card.in-view { opacity: 1; transform: translateY(0); }

.team-photo { position: relative; height: 0; padding-bottom: 100%; overflow: hidden; border-radius: 50%; background: var(--bg-alt); }
.team-swatch { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-photo .img-wrap { position: absolute; inset: 0; width: auto; height: auto; }
.team-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: rgba(255,255,255,.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4px 14px; gap: 2px;
  transform: translateY(100%); transition: transform .3s ease;
}
.team-card:hover .team-overlay, .team-card.tapped .team-overlay { transform: translateY(0); }
.team-overlay a { color: var(--text-primary); font-size: 11.5px; line-height: 1.35; text-decoration: none; word-break: break-word; }
.team-overlay a:hover { text-decoration: underline; }

.team-name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; margin: 10px 0 0; text-align: center; }
.team-title { font-size: 13px; color: var(--text-secondary); margin: 2px 0 0; text-align: center; text-transform: uppercase; letter-spacing: .02em; }

/* ---------- Gallery page ---------- */
.gallery-grid {
  display: flex; gap: 16px;
  width: 70%; max-width: 1800px; margin: 0 auto; padding: 60px 0 100px;
}
@media (max-width: 900px) { .gallery-grid { width: 92%; } }
@media (max-width: 600px) { .gallery-grid { width: 92%; } }

.gallery-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }

.gallery-item {
  display: block;
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.gallery-item.in-view { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: auto; display: block; border-radius: 4px; cursor: zoom-in; }

/* ---------- Blank placeholder section (nothing left to scaffold) ---------- */

/* Image lightbox (Services page thumbnails) */
.lightbox-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,15,14,0); opacity: 0; visibility: hidden;
  transition: opacity .3s ease, background .3s ease, visibility 0s linear .3s;
}
.lightbox-backdrop.open {
  opacity: 1; visibility: visible; background: rgba(15,15,14,.92);
  transition: opacity .3s ease, background .3s ease, visibility 0s linear 0s;
}
.lightbox-img {
  max-width: 90vw; max-height: 90vh; width: auto; height: auto;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  transform: scale(.96); transition: transform .3s ease;
}
.lightbox-backdrop.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px; background: none; border: none;
  font-size: 34px; line-height: 1; color: #fff; cursor: pointer; z-index: 1101;
}
.lightbox-close:hover { color: var(--text-muted); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: #fff; color: var(--text-primary); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  z-index: 1101;
}
.lightbox-nav:hover { background: var(--bg-alt); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
@media (max-width: 900px) {
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
.svc-thumb img { cursor: zoom-in; }

/* ---------- Services page ---------- */
.services-intro { max-width: 780px; margin: 0 auto; padding: 90px 24px 40px; }
.services-intro p { font-size: 17px; color: var(--text-secondary); margin: 0 0 14px; }
.services-intro p.punct { color: var(--c-showcontrol); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: .01em; text-align: center; }

.services-track { position: relative; max-width: 1100px; margin: 0 auto; padding: 20px 40px 0; }
.connector-line {
  position: absolute; left: 50%; bottom: 0; top: 60px; width: 2px;
  transform: translateX(-50%); background: var(--border); z-index: 0;
}
.connector-line .fill {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: var(--c-showcontrol); transition: height 2.4s linear;
}
.svc-row {
  scroll-margin-top: 200px;
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: center; margin-bottom: 26px;
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.svc-row.in-view { opacity: 1; transform: translateY(0); }
.svc-row:nth-child(even) { direction: rtl; }
.svc-row:nth-child(even) > * { direction: ltr; }
.svc-card {
  background: #fff; border-left: 5px solid var(--accent, #ccc); border-radius: 8px;
  padding: 26px 30px;
}
.svc-row:nth-child(even) .svc-card { border-left: none; border-right: 5px solid var(--accent, #ccc); }
.svc-card h3 { font-size: 19px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .02em; }
.svc-card p { font-size: 14.5px; color: var(--text-secondary); margin: 0; }
.svc-thumb { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; transition: box-shadow .25s ease; }
.privacy-note { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; }
.privacy-note a { color: var(--text-secondary); text-decoration: underline; }
.quote-modal .privacy-note { color: rgba(255,255,255,.55); }
.quote-modal .privacy-note a { color: rgba(255,255,255,.8); }
.svc-thumb:hover { box-shadow: 0 0 0 6px var(--accent); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }

.svc-row.show-control {
  grid-template-columns: 1fr; text-align: center; margin-top: 10px;
}
.svc-row.show-control .svc-card {
  border-left: none; border-right: none; border-top: 5px solid var(--accent, #ccc);
  max-width: 720px; margin: 0 auto;
}

@media (max-width: 900px) {
  header.site-header { padding: 0 16px; height: 100px !important; }
  .img-wrap-inline .logo-img { height: 56px !important; }
  nav.main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .header-actions { gap: 8px; }
  .btn-quote { display: none; }
  .quote-icon-btn { display: flex; }
  .mobile-nav {
    position: fixed; top: 100px; left: 0; right: 0; z-index: 490;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
  }
  .phone-popover { display: none !important; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { grid-template-columns: 1fr; }
  .closing .photo-side { position: relative; height: 320px; order: -1; }
  .footer-cols { grid-template-columns: 1fr; }
  .svc-row, .svc-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .connector-line { display: none; }
}
