/* =============================================
   MOLITOR CONSTRUCTION — SHARED STYLESHEET
   ============================================= */

/* TOKENS */
:root {
  --navy:       #0F2A44;
  --blue:       #1E73BE;
  --blue-deep:  #155A96;
  --blue-light: #EAF3FB;
  --sky:        #C8DEF0;
  --ground:     #F5F8FA;
  --surface:    #FFFFFF;
  --text:       #0F2A44;
  --text-sub:   #5A6E82;
  --border:     #D0E4F2;
  --divider:    rgba(15,42,68,0.10);
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --pad:        clamp(52px, 8vw, 88px);
  --radius:     8px;
  --radius-lg:  14px;
  --container:  1200px;
  --gutter:     clamp(16px, 4vw, 32px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:     #071422;
    --surface:    #0D2035;
    --text:       #DCF0FF;
    --text-sub:   #7AAEC8;
    --border:     #1A3A55;
    --divider:    rgba(220,240,255,0.08);
    --blue-light: #0A1E30;
    --sky:        #1A3A55;
  }
}
:root[data-theme="dark"] {
  --ground:     #071422;
  --surface:    #0D2035;
  --text:       #DCF0FF;
  --text-sub:   #7AAEC8;
  --border:     #1A3A55;
  --divider:    rgba(220,240,255,0.08);
  --blue-light: #0A1E30;
  --sky:        #1A3A55;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--ground);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* Fill containers when real photos are dropped in */
.svc-img img, .ticker-img img, .team-photo img,
.remo-card-img img, .blog-card-img img,
.service-img-col img { width: 100%; height: 100%; object-fit: cover; }
.ba-after img, .ba-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cert-badge img { height: 28px; width: auto; object-fit: contain; display: block; margin-bottom: 4px; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* LAYOUT */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-pad { padding: var(--pad) 0; }

/* TYPE SCALE */
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(27px, 3.8vw, 42px);
  line-height: 1.08;
  color: var(--blue-deep);
  text-wrap: balance;
  margin-top: 5px;
}
.section-sub {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--blue);
  font-style: italic;
  margin-top: 4px;
}
.sec-header { margin-bottom: 40px; }
.sec-header.center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(30,115,190,0.28); }
.btn-secondary { background: var(--blue-light); color: var(--navy); }
.btn-secondary:hover { background: var(--sky); transform: translateY(-1px); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue-light); }

/* PLACEHOLDER IMAGES */
.ph {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 18px,
      rgba(30,115,190,0.06) 18px, rgba(30,115,190,0.06) 36px),
    var(--blue-light);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 12px;
  color: var(--text-sub);
}
.ph-label { font-weight: 600; font-size: 12px; }
.ph-file  { font-family: monospace; font-size: 10px; opacity: 0.6; }

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 2px 16px rgba(15,42,68,0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.1;
}
.logo-tag {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-sub);
}
nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-list a {
  display: block;
  padding: 7px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.nav-list a:hover,
.nav-list a.active { background: var(--blue-light); color: var(--blue); }
.has-drop { position: relative; }
.has-drop > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15,42,68,0.12);
  padding: 5px;
  list-style: none;
  z-index: 50;
}
.has-drop:hover .drop-menu,
.has-drop:focus-within .drop-menu { display: block; }
.drop-menu a { font-size: 13px; padding: 8px 12px; border-radius: 5px; white-space: nowrap; display: block; }
.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}
.nav-phone {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.nav-phone:hover { color: var(--blue); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text);
  padding: 6px;
  line-height: 1;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: clamp(48px,7vw,80px) 0;
  background:
    linear-gradient(75deg, var(--navy) 50%, rgba(30,115,190,0.75) 50%, rgba(30,115,190,0) 62%),
    linear-gradient(160deg, #7AA0B8 0%, #527A94 40%, #7A8C68 65%, #5E6B50 100%);
}
.page-hero-content { max-width: 680px; }
.page-hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #63C5FF;
  margin-bottom: 8px;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 14px;
}
.page-hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 22px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.4; }

/* CTA BANNER (shared) */
.cta-banner {
  padding: var(--pad) 0;
  overflow: hidden;
  background:
    linear-gradient(-75deg, var(--navy) 52%, rgba(15,42,68,0) 52%),
    linear-gradient(160deg, #5B7A8A 0%, #3D6070 45%, #7A8C68 100%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}
.cta-right { text-align: right; }
.cta-eyebrow {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234,243,251,0.65);
  margin-bottom: 7px;
}
.cta-h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 40px);
  color: #fff;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 10px;
}
.cta-body { font-size: 15px; color: rgba(234,243,251,0.72); line-height: 1.65; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 11px; justify-content: flex-end; flex-wrap: wrap; }

/* BEFORE/AFTER SLIDER */
.ba {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(15,42,68,0.16);
  aspect-ratio: 4/3;
  user-select: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-lbl {
  position: absolute;
  bottom: 10px;
  padding: 0 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.ba-lbl span {
  background: rgba(15,42,68,0.70);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.ba-line::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
}

/* SERVICE CARDS */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,42,68,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { box-shadow: 0 10px 32px rgba(30,115,190,0.13); transform: translateY(-3px); }
.svc-img { height: 196px; flex-shrink: 0; }
.svc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.svc-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 11px;
  flex-shrink: 0;
}
.svc-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 7px;
}
.svc-desc { font-size: 14px; color: var(--text-sub); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* BLOG CARDS */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(15,42,68,0.05);
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(30,115,190,0.11); transform: translateY(-2px); }
.blog-thumb { height: 210px; flex-shrink: 0; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12px; color: var(--text-sub); margin-bottom: 8px; letter-spacing: 0.04em; }
.blog-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  text-wrap: balance;
}
.blog-excerpt { font-size: 14px; color: var(--text-sub); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* BLOG CARD (listing + related posts) */
.blog-card-img { height: 200px; flex-shrink: 0; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.blog-card-cat {
  background: var(--blue-light);
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
.blog-card-date { font-size: 12px; color: var(--text-sub); }
.blog-card-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
  text-wrap: balance;
}
.blog-card-excerpt { font-size: 14px; color: var(--text-sub); line-height: 1.65; flex: 1; margin-bottom: 12px; }

/* BLOG POST (full article) */
.blog-post-wrap { max-width: 840px; margin: 0 auto; }
.blog-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-cta-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 40px;
}
.blog-cta-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.blog-cta-body { font-size: 14px; color: var(--text-sub); line-height: 1.65; margin-bottom: 16px; }

/* FEATURE ROW (icon + text) */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-icon {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.feature-text { font-size: 15px; font-weight: 500; line-height: 1.5; }
.feature-text strong { display: block; }
.feature-text span { font-weight: 400; color: var(--text-sub); font-size: 13px; }

/* BOTTOM CTA */
.bottom-cta { padding: clamp(44px,6vw,72px) 0; background: var(--surface); text-align: center; }
.bottom-cta .section-title { margin-bottom: 20px; }
.bottom-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.ft-logo-name { font-family: var(--ff-display); font-weight: 800; font-size: 18px; color: #fff; }
.ft-logo-tag  { font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 10px 0 18px; max-width: 280px; }
.ft-social { display: flex; gap: 8px; }
.ft-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s;
}
.ft-social a:hover { background: var(--blue); color: #fff; }
.ft-heading {
  font-family: var(--ff-display);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,0.60); transition: color 0.14s; }
.ft-links a:hover { color: #fff; }
.ft-contact-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 9px; font-size: 13px; color: rgba(255,255,255,0.60); }
.ft-contact-row a { color: rgba(255,255,255,0.60); transition: color 0.14s; }
.ft-contact-row a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bar p { font-size: 12px; color: rgba(255,255,255,0.30); }

/* PROSE (blog posts) */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--blue-deep);
  text-wrap: balance;
  line-height: 1.1;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.prose h1 { font-size: clamp(28px,4vw,40px); }
.prose h2 { font-size: clamp(22px,3vw,30px); }
.prose h3 { font-size: clamp(18px,2.5vw,24px); }
.prose p { font-size: 16px; color: var(--text-sub); line-height: 1.78; margin-bottom: 1.2em; }
.prose p:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.2em 1.4em; }
.prose li { font-size: 16px; color: var(--text-sub); line-height: 1.7; margin-bottom: 0.4em; }
.prose strong { color: var(--text); font-weight: 600; }
.prose .post-thumb { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.prose .post-thumb .ph { aspect-ratio: 16/9; border-radius: 0; border: none; }
.post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.post-tag {
  background: var(--blue-light);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.post-date { font-size: 13px; color: var(--text-sub); }
.post-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.post-images-grid .ph { aspect-ratio: 4/3; border-radius: var(--radius); border: none; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--blue); font-weight: 500; margin-bottom: 28px; }
.back-link:hover { color: var(--blue-deep); }

/* GALLERY GRID */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-sub);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item .ph {
  border-radius: 0;
  border: none;
  width: 100%;
}
.gallery-item:nth-child(3n+1) .ph { aspect-ratio: 4/3; }
.gallery-item:nth-child(3n+2) .ph { aspect-ratio: 3/4; }
.gallery-item:nth-child(3n+3) .ph { aspect-ratio: 1; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-label { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.info-value { font-size: 14px; color: var(--text-sub); line-height: 1.5; }
.info-value a { color: var(--blue); }

/* FORM PLACEHOLDER */
.form-ph {
  background: var(--blue-light);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  color: var(--text-sub);
  font-size: 12px;
}
.form-ph strong { display: block; font-size: 14px; margin-bottom: 6px; color: var(--text); }
.form-ph code { font-size: 10px; background: rgba(0,0,0,0.06); padding: 2px 5px; border-radius: 3px; }
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15,42,68,0.07);
}
.form-panel-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-panel-sub { font-size: 14px; color: var(--text-sub); margin-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { text-align: left; }
  .cta-btns { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 640px) {
  .nav-list, .nav-phone { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .nav-end .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .post-images-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}
