:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #eef6ff;
  --text: #17324a;
  --muted: #5c7286;
  --line: #dbe8f4;
  --primary: #2b6ea6;
  --primary-dark: #1d5685;
  --accent: #ef8b2c;
  --accent-soft: #fff2e4;
  --shadow: 0 18px 50px rgba(20, 52, 79, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #eff7ff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid rgba(219, 232, 244, 0.9);
}
.top-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #3a83c4 70%, var(--accent) 100%);
  color: white;
  font-size: 0.88rem;
  overflow: clip;
}
.top-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.header-main {
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 8px;
}
.brand {
  justify-self: center;
  text-align: center;
  min-width: 0;
}
.brand-text-wrap {
  display: block;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.brand strong {
  display: block;
  font-size: clamp(1.15rem, 5vw, 1.7rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.header-phone,
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(20, 52, 79, 0.07);
}
.menu-toggle {
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  content: "";
}
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }

.mobile-nav {
  display: none;
  padding: 0 0 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }
.desktop-nav { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 44, 67, 0.20), rgba(14, 35, 53, 0.72));
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .container {
  position: relative;
  z-index: 2;
  min-height: 82svh;
  display: flex;
  align-items: start;
  padding: 18px 0 44px;
}
.hero-card {
  width: min(100%, 680px);
  color: white;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}
.hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 9vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}
.hero p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 32px rgba(239, 139, 44, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: white;
  border-color: rgba(255,255,255,0.24);
}
.btn-light {
  background: white;
  color: var(--primary);
  border-color: var(--line);
}

.trust-bar {
  margin-top: -24px;
  position: relative;
  z-index: 3;
}
.trust-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  padding: 18px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #edf7ff, #fff3e8);
  color: var(--primary);
  border: 1px solid #e1edf7;
}
.section {
  padding: 72px 0;
}
.section-tight { padding-top: 44px; }
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 5.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-copy {
  color: var(--muted);
  max-width: 64ch;
}

.about-grid,
.cta-grid,
.contact-grid,
.review-highlight,
.project-grid {
  display: grid;
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-copy {
  padding: 24px;
}
.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}
.about-list {
  display: grid;
  gap: 12px;
}
.about-list-item {
  display: flex;
  gap: 12px;
  align-items: start;
}
.about-list-item svg { color: var(--accent); flex: 0 0 22px; margin-top: 2px; }
.about-panel {
  padding: 22px;
  background: linear-gradient(180deg, #fbfdff, #f0f7ff);
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 8px 10px 0;
  color: var(--muted);
}

.services-grid,
.review-grid,
.gallery-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}
.service-card {
  padding: 22px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #edf7ff, #fff2e2);
  border: 1px solid #ddebf7;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-card h3,
.review-card h3,
.contact-card h3,
.project-panel h3 { margin: 0 0 10px; }
.service-card p,
.review-card p,
.contact-card p,
.project-panel p { margin: 0; color: var(--muted); line-height: 1.7; }

.project-shot {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  border: 1px solid rgba(219,232,244,0.9);
  color: var(--primary);
  font-weight: 700;
}
.project-panel {
  padding: 24px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.metric {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.metric strong { display: block; font-size: 1.35rem; }
.metric span { color: var(--muted); font-size: 0.93rem; }

.review-card {
  padding: 22px;
}
.review-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}
.avatar.blue { background: #3f84c0; }
.avatar.orange { background: #ec8b2d; }
.avatar.green { background: #5f993d; }
.avatar.teal { background: #2a8c8f; }
.avatar.brown { background: #8d634f; }
.avatar.gold { background: #d18a0e; }
.review-meta small,
.review-badge,
.contact-meta {
  color: var(--muted);
}
.stars {
  display: inline-flex;
  gap: 4px;
  color: #f2b01e;
  margin: 4px 0 10px;
}
.review-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.review-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.review-photos img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: white;
}
.gallery-item.tall { aspect-ratio: 0.68 / 1; }
.gallery-item.wide { aspect-ratio: 1.45 / 1; grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(219,232,244,0.9);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-card { padding: 22px; }
.contact-card a { color: var(--primary); font-weight: 700; }
.contact-form { padding: 22px; }
.field-grid { display: grid; gap: 14px; }
.field label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfdff;
  border-radius: 16px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--text);
}
.field textarea { min-height: 160px; resize: vertical; }

.cta-band {
  background: linear-gradient(135deg, #edf7ff, #fff2e5);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 34px 0 44px;
  color: var(--muted);
}
.footer-panel {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a:hover { color: var(--primary); }

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: grid;
  gap: 10px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 18px 32px rgba(27, 59, 92, 0.18);
}
.float-btn.call { background: var(--primary); }
.float-btn.whatsapp { background: #25D366; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 19, 28, 0.88);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(100%, 1200px);
  max-height: 84vh;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  color: white;
}
.hidden-netlify { display: none !important; }


.premium-panel {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}
.feature-stack {
  display: grid;
  gap: 16px;
}
.feature-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(20, 52, 79, 0.05);
}
.feature-block-head {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.feature-block-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #edf7ff, #fff2e2);
  color: var(--primary);
  border: 1px solid #ddebf7;
  flex: 0 0 42px;
}
.icon-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}
.icon-pill span {
  color: var(--accent);
  font-weight: 800;
}
.before-after-card {
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f3f8fe);
}
.before-after {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  border: 1px solid var(--line);
  background: #dceaf7;
  touch-action: none;
}
.before-after > img,
.before-after-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-base {
  position: absolute;
  inset: 0;
}
.before-after-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.before-after-overlay img {
  width: 100%;
}
.before-after-divider {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 0;
  border-left: 2px solid rgba(255,255,255,0.96);
  box-shadow: 0 0 0 1px rgba(23, 50, 74, 0.08);
}
.before-after-handle {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(20, 52, 79, 0.18);
}
.before-after-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(219,232,244,0.9);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.before-label { left: 14px; }
.after-label { right: 14px; }
.premium-project-panel {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}
@media (max-width: 719px) {
  .brand small { display: none; }
  .top-strip .container span {
    width: calc(50% - 6px);
    line-height: 1.15;
  }
  .top-strip .container span:last-child {
    text-align: left;
  }
}

@media (min-width: 720px) {
  .trust-panel { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .about-grid,
  .cta-grid,
  .contact-grid,
  .review-highlight,
  .project-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

@media (min-width: 980px) {
  .header-main {
    grid-template-columns: 56px minmax(240px, 1fr) auto 56px;
  }
  .desktop-nav {
    display: flex;
    gap: 10px;
    justify-self: center;
  }
  .desktop-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
  }
  .desktop-nav a.active,
  .desktop-nav a:hover {
    background: white;
    color: var(--primary);
    border: 1px solid var(--line);
  }
  .header-main {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    min-height: 84px;
  }
  .brand {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .brand-mark { margin: 0; }
  .desktop-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .desktop-nav a {
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
  }
  .desktop-nav a:hover,
  .desktop-nav a.active {
    background: white;
    border: 1px solid var(--line);
    color: var(--primary);
  }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .header-phone { order: 4; }
  .hero .container { align-items: center; padding-bottom: 64px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}


@media (max-width: 719px) {
  .hero .container {
    min-height: 74svh;
    align-items: start;
    padding: 14px 0 36px;
  }
  .kicker {
    margin-top: 0;
    padding: 9px 14px;
  }
  .hero h1 {
    margin-top: 10px;
  }
}



/* Paramount additions */
.hero-card-clean { padding-top: 26px; }
.hero-card-clean h1 { margin-top: 0; }

.project-grid-enhanced { align-items: start; }
.project-media-stack {
  display: grid;
  gap: 18px;
}
.compare-grid {
  display: grid;
  gap: 18px;
}
.compare-card {
  padding-top: 12px;
}
.compare-caption,
.pair-preview-title {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin: 0 0 10px;
}
.before-after-small { min-height: 320px; }

.transform-card {
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f3f8fe);
}
.transform-sequence {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  border: 1px solid var(--line);
  background: #dceaf7;
}
.transform-sequence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.transform-sequence img.is-active { opacity: 1; }
.transform-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.transform-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.metric-row-stack { gap: 12px; }
.gallery-pair-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}
.pair-preview {
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}
.pair-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pair-half {
  min-height: 220px;
}
.pair-half img { height: 100%; object-fit: cover; }
.gallery-grid-extra-top { margin-top: 10px; }
.section-head-spaced { margin-top: 26px; }
.transform-gallery-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}
.transform-gallery-grid .gallery-item { min-height: 220px; }

@media (min-width: 720px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-pair-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .transform-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 719px) {
  .transform-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .before-after,
  .transform-sequence {
    min-height: 300px;
  }
  .transform-sequence {
    background: linear-gradient(180deg, #f3f8fe, #edf4fb);
  }
}


/* mobile fit + transformation crop fix */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
.site-header,
main,
section,
.card,
.project-grid-enhanced,
.project-media-stack,
.compare-grid,
.compare-card,
.transform-card,
.before-after,
.transform-sequence {
  max-width: 100%;
}
.header-main > * {
  min-width: 0;
}
.transform-finished-top {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 719px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
    max-width: calc(100% - 24px);
  }
  .header-main {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 6px;
  }
  .brand {
    width: 100%;
    justify-self: center;
    text-align: center;
  }
  .brand strong {
    font-size: clamp(1.05rem, 5.4vw, 1.42rem);
  }
  .top-strip .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 10px 0;
  }
  .top-strip .container span {
    width: auto !important;
    min-width: 0;
    display: block;
    overflow-wrap: anywhere;
  }
  .before-after-card,
  .transform-card,
  .pair-preview,
  .service-card,
  .review-card,
  .gallery-item,
  .project-panel {
    min-width: 0;
    width: 100%;
  }
  .project-grid-enhanced {
    grid-template-columns: 1fr;
  }
  .metric-row,
  .metric-row-stack {
    grid-template-columns: 1fr;
  }
  .project-panel,
  .project-panel p,
  .project-panel .metric,
  .project-panel .hero-actions,
  .project-panel .btn,
  .section-head,
  .section h2,
  .section-copy {
    min-width: 0;
    max-width: 100%;
  }
  .project-panel p,
  .metric span,
  .section-copy,
  .section h2,
  .compare-caption,
  .pair-preview-title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .project-panel .hero-actions {
    flex-direction: column;
  }
  .project-panel .hero-actions .btn {
    width: 100%;
  }
  .project-grid-enhanced,
  .project-media-stack,
  .compare-grid,
  .gallery-pair-grid,
  .transform-gallery-grid,
  .services-grid,
  .review-highlight,
  .gallery-grid,
  .about-grid,
  .contact-grid,
  .cta-grid {
    min-width: 0;
    max-width: 100%;
  }
}

/* 2026 polish updates */
.top-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #3a83c4 70%, var(--accent) 100%);
  color: #fff;
  font-size: 0.88rem;
  overflow: hidden;
}
.top-strip-marquee {
  display: flex;
  width: 100%;
  min-height: 44px;
  overflow: hidden;
  align-items: center;
}
.top-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  animation: top-strip-scroll 28s linear infinite;
}
.top-strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.top-strip-track span::after {
  content: '•';
  margin: 0 18px;
  opacity: 0.9;
}
@keyframes top-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .top-strip-track { animation: none; }
}

.menu-toggle {
  padding: 0;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
  display: block;
  margin: 0 auto;
  transition: background 0.2s ease, transform 0.2s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.hidden-field,
.netlify-form-cache {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 719px) {
  .top-strip-marquee { min-height: 52px; }
  .top-strip-track span {
    padding: 14px 0;
    font-size: 0.9rem;
  }
}
