/* ==========================================================================
   Multi Scaff Engineering - Design System
   ========================================================================== */

:root {
  --orange: #FF7A1A;
  --orange-dark: #E0660A;
  --orange-light: #FFF1E6;
  --charcoal: #232323;
  --charcoal-soft: #55565A;
  --grey-bg: #F7F7F8;
  --grey-border: #E7E6E4;
  --white: #FFFFFF;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(20,20,20,0.06);
  --shadow-md: 0 10px 30px rgba(20,20,20,0.10);
  --shadow-lg: 0 20px 50px rgba(20,20,20,0.18);
  --container: 1180px;
  --header-h: 84px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-head: 'Poppins', var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--charcoal);
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--charcoal-soft); font-size: 17px; }
.text-orange { color: var(--orange); }
.bg-soft { background: var(--grey-bg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--orange); }
.btn-dark-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-dark-outline:hover { background: var(--charcoal); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 72px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; transition: height .3s ease; }
.scrolled .brand img { height: 38px; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.home-hero .site-header:not(.scrolled) .main-nav a,
.home-hero .site-header:not(.scrolled) .brand-name,
.home-hero .site-header:not(.scrolled) .header-phone {
  color: var(--white);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 28px; }
.header-phone { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.header-phone svg { flex-shrink: 0; color: var(--orange); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-close { display: none; }

@media (max-width: 960px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78vw; max-width: 340px;
    background: var(--white); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 32px; box-shadow: var(--shadow-lg); transition: right .3s ease; }
  .main-nav.open { right: 0; }
  .nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(10,10,10,.45); z-index: 999; }
  .nav-backdrop.open { display: block; }
  .nav-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 24px; right: 24px;
    width: 38px; height: 38px; border-radius: 50%;
    border: none; background: var(--orange); color: #fff;
    cursor: pointer;
  }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .main-nav a, .home-hero .site-header:not(.scrolled) .main-nav a { color: var(--charcoal) !important; }
  .header-phone.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .home-hero .site-header:not(.scrolled) .nav-toggle-icon { color: var(--white); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,15,15,.82) 10%, rgba(15,15,15,.55) 55%, rgba(255,122,26,.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,122,26,.16);
  border: 1px solid rgba(255,122,26,.55);
  color: #FFB877;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 66px);
  color: var(--white);
  max-width: 900px;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--orange); }
.hero p.lead {
  font-size: 19px;
  max-width: 560px;
  color: rgba(255,255,255,.85);
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; border-top: 1px solid rgba(255,255,255,.2); padding-top: 30px; max-width: 640px; }
.hero-stats .num { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--white); }
.hero-stats .lbl { font-size: 13px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.hero-badge { display: flex; align-items: center; }
.hero-badge img { height: 46px; width: auto; display: block; }
@media (max-width: 700px) {
  .hero-badge img { height: 38px; }
}
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.75); font-size: 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,.5); animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top;} 50% { transform: scaleY(1); transform-origin: top;} 51% {transform-origin: bottom;} 100% { transform: scaleY(0); transform-origin: bottom;} }

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 200px 0 90px;
  color: var(--white);
  background: linear-gradient(120deg, rgba(20,20,20,.88), rgba(20,20,20,.7)), var(--charcoal) center/cover;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 50px); }
.page-hero .crumb { color: rgba(255,255,255,.7); font-size: 14px; }
.page-hero .crumb a { color: var(--orange); font-weight: 600; }

/* ---------- About / Who We Are ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 560px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--orange); color: #fff; padding: 26px 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-badge .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }
.about-points { display: grid; gap: 20px; margin-top: 30px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point .ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.about-point h4 { margin-bottom: 4px; font-size: 16px; }
.about-point p { margin: 0; color: var(--charcoal-soft); font-size: 15px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img { height: 360px; }
  .about-badge { left: 16px; bottom: -20px; padding: 18px 22px; }
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ico {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--charcoal-soft); font-size: 15px; margin-bottom: 0; }
.service-full {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 40px;
  background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 44px;
}
.service-full .ico { background: rgba(255,122,26,.18); color: var(--orange); }
.service-full h3 { color: #fff; }
.service-full p { color: rgba(255,255,255,.72); }
.service-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.service-tags span { border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 6px 14px; font-size: 13px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-full { flex-direction: column; align-items: flex-start; }
}

/* ---------- Portfolio (home preview + full page) ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.portfolio-grid.compact { grid-template-columns: repeat(4, 1fr); }
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.15) 55%, rgba(10,10,10,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  color: #fff;
}
.project-card .cat {
  color: var(--orange); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px;
}
.project-card h3 { color: #fff; font-size: 17px; margin-bottom: 2px; }
.project-card .loc { font-size: 13px; color: rgba(255,255,255,.7); }
.project-card .count-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,.55); color: #fff; font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 50px; display: flex; align-items: center; gap: 5px;
}
.portfolio-cta { text-align: center; margin-top: 54px; }

@media (max-width: 960px) {
  .portfolio-grid, .portfolio-grid.compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-grid, .portfolio-grid.compact { grid-template-columns: 1fr; }
}

/* filters */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-bar button {
  border: 1px solid var(--grey-border); background: #fff; color: var(--charcoal-soft);
  padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all .2s ease;
}
.filter-bar button.active, .filter-bar button:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Mission ---------- */
.mission {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(15,15,15,.90), rgba(15,15,15,.72)), var(--charcoal) center/cover;
  text-align: center;
}
.mission .eyebrow { color: var(--orange); }
.mission h2 { color: #fff; max-width: 780px; margin: 0 auto 22px; }
.mission p { max-width: 760px; margin: 0 auto 20px; color: rgba(255,255,255,.78); font-size: 17px; }
.mission-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.mission-pillars div { padding: 26px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); }
.mission-pillars .ico { color: var(--orange); margin-bottom: 14px; }
.mission-pillars h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.mission-pillars p { color: rgba(255,255,255,.65); font-size: 13px; margin: 0; }
@media (max-width: 860px) { .mission-pillars { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stats ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--white);
}
.stat-box { text-align: center; padding: 20px; border-right: 1px solid var(--grey-border); }
.stat-box:last-child { border-right: none; }
.stat-box .num {
  font-family: var(--font-head); font-weight: 700; color: var(--orange);
  font-size: clamp(34px, 4vw, 52px); line-height: 1;
}
.stat-box .lbl { margin-top: 10px; color: var(--charcoal-soft); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 760px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid var(--grey-border); padding: 24px 10px; }
}

/* ---------- Clients ---------- */
.clients-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center;
}
.clients-strip .client-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 18px; border: 1px solid var(--grey-border); border-radius: var(--radius);
  filter: grayscale(100%); opacity: .65; transition: all .25s ease; background: #fff;
}
.clients-strip .client-logo:hover { filter: grayscale(0%); opacity: 1; border-color: var(--orange); }
.clients-strip img { max-height: 46px; width: auto; margin: 0 auto; }
@media (max-width: 860px) { .clients-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .clients-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid var(--grey-border); border-radius: var(--radius);
  padding: 14px 16px; font-family: var(--font); font-size: 15px; background: var(--grey-bg);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--charcoal-soft); }
.form-success {
  display: none; background: #EFFAF1; border: 1px solid #B9E6C2; color: #226B33;
  padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
}
.form-success.show { display: block; }

.info-card { background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 40px; height: 100%; }
.info-card h3 { color: #fff; font-size: 20px; }
.info-block { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.info-block:first-of-type { border-top: none; }
.info-block .ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,122,26,.18); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.info-block h4 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.info-block p { color: rgba(255,255,255,.68); font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,.7); padding: 60px 0 24px; font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.55); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: rgba(255,255,255,.45); font-size: 13px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,10,.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 1100px; width: 100%; text-align: center; }
.lightbox img { max-height: 78vh; margin: 0 auto; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #fff; margin-top: 18px; font-size: 15px; }
.lightbox figcaption .lb-count { color: rgba(255,255,255,.5); margin-left: 8px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); border-color: var(--orange); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lb-prev { left: 10px; } .lb-next { right: 10px; } .lb-close { top: 12px; right: 12px; }
  .lightbox img { max-height: 62vh; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--orange); color: #fff; text-align: center; padding: 70px 24px; border-radius: var(--radius);
  margin: 0 24px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 30px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Gallery grid modal (for large photo sets) ---------- */
.gallery-modal {
  position: fixed; inset: 0; z-index: 1950;
  background: rgba(10,10,10,.97);
  display: none; flex-direction: column;
  padding: 26px 30px;
}
.gallery-modal.open { display: flex; }
.gallery-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; margin-bottom: 22px; flex-shrink: 0; gap: 20px;
}
.gallery-modal-header h3 { color: #fff; margin: 0 0 4px; font-size: 20px; }
.gallery-modal-header .gm-loc { color: rgba(255,255,255,.55); font-size: 13px; }
.gallery-modal-header .gm-count {
  color: var(--orange); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
}
.gm-close {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  flex-shrink: 0; transition: background .2s ease, border-color .2s ease;
}
.gm-close:hover { background: var(--orange); border-color: var(--orange); }
.gallery-modal-grid {
  flex: 1; overflow-y: auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px; padding-bottom: 30px;
}
.gallery-modal-grid .gm-thumb {
  position: relative;
  aspect-ratio: 1; border-radius: 6px; overflow: hidden; cursor: pointer;
  background: #111;
}
.gallery-modal-grid .gm-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-modal-grid .gm-thumb:hover img { transform: scale(1.06); opacity: .88; }
.gallery-modal-grid .gm-thumb .gm-num {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.6); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}
@media (max-width: 700px) {
  .gallery-modal { padding: 18px; }
  .gallery-modal-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
}
