:root {
  --navy: #101d29;
  --navy-2: #142634;
  --navy-3: #0d1822;
  --yellow: #f5a900;
  --yellow-2: #ffbd20;
  --ink: #121a22;
  --muted: #626a72;
  --line: #e1e4e7;
  --paper: #ffffff;
  --offwhite: #fafafa;
  --white: #ffffff;
  --font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
body.modal-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 56px, 1360px); margin-inline: auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 16, 24, .88), rgba(7, 16, 24, .2));
}

.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: 250px 1fr 156px;
  align-items: center;
  gap: 34px;
}

.brand { display: inline-flex; width: 200px; }
.brand img { width: 100%; height: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.4vw, 44px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu a { position: relative; padding: 38px 0 34px; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active { color: var(--yellow); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
}
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff; transition: .2s ease; }

.btn {
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { color: #0b1218; background: linear-gradient(90deg, var(--yellow), var(--yellow-2)); }
.btn-yellow:hover { background: var(--yellow-2); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.8); background: rgba(4, 12, 18, .28); }
.btn-outline:hover { border-color: var(--yellow); }
.btn-dark { color: #fff; background: var(--navy); }
.nav-budget { justify-self: end; width: 156px; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 51%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,16,24,.97) 0%, rgba(7,16,24,.86) 25%, rgba(7,16,24,.35) 54%, rgba(7,16,24,.04) 78%),
    linear-gradient(180deg, rgba(7,15,22,.1), rgba(7,15,22,.23));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 650px;
  padding-top: 168px;
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.8px;
  text-transform: uppercase;
}
.hero h1 em, .choose h2 em { color: var(--yellow); font-style: normal; }
.hero-title-mobile { display: none; }
.hero p { margin: 22px 0 0; color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; gap: 18px; margin-top: 32px; }
.hero-actions .btn { min-width: 210px; }

.values { color: #fff; background: linear-gradient(90deg, #0e1b26, #142838); border-top: 1px solid rgba(255,255,255,.14); }
.values-grid { min-height: 170px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.values article {
  min-height: 104px;
  padding: 8px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.values article:first-child { padding-left: 20px; }
.values article:last-child { border-right: 0; }
.values article > img { width: 50px; height: 50px; object-fit: contain; filter: saturate(2.4) brightness(1.35); }
.values strong, .values span { display: block; }
.values strong { margin-bottom: 7px; font-size: 15px; font-weight: 700; text-transform: uppercase; }
.values span { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.5; }

.section { padding: 72px 0; background: #fff; }
.section-heading { min-height: 40px; margin-bottom: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.section-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 40px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-heading h2::before { content: ""; position: absolute; left: 0; top: 50%; width: 25px; height: 3px; background: var(--yellow); transform: translateY(-50%); }
.section-heading p { margin: 0; color: #3f4750; font-size: 15px; }

.services { background: linear-gradient(105deg, #fff 0%, #f7f7f7 100%); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { min-width: 0; border-bottom: 1px solid #e1e3e5; background: #fff; }
.service-photo { position: relative; height: 190px; overflow: hidden; border-radius: 4px; }
.service-photo > img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-photo > img { transform: scale(1.025); }
.service-photo span { position: absolute; left: 12px; bottom: 0; width: 43px; height: 43px; display: grid; place-items: center; background: var(--yellow); border: 3px solid #fff; border-bottom: 0; }
.service-photo span img { width: 23px; height: 23px; object-fit: contain; filter: brightness(0) invert(1); }
.service-copy { min-height: 192px; padding: 21px 14px 20px; }
.service-copy h3 { margin: 0 0 11px; font-size: 15px; font-weight: 700; text-transform: uppercase; }
.service-copy p { margin: 0; color: #313941; font-size: 15px; line-height: 1.5; }

.choose { color: #fff; background: linear-gradient(100deg, #10202c, #172c3c); }
.choose-grid { min-height: 184px; display: grid; grid-template-columns: 1.6fr repeat(4, .8fr); align-items: center; }
.choose-intro { padding-right: 48px; }
.choose-intro h2 { margin: 0 0 13px; font-size: 21px; line-height: 1.15; text-transform: uppercase; }
.choose-intro p { max-width: 350px; margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.55; }
.stat { min-height: 84px; padding: 8px 26px; display: flex; align-items: center; gap: 15px; border-left: 1px solid rgba(255,255,255,.21); }
.stat img { width: 40px; height: 40px; object-fit: contain; filter: saturate(2.5) brightness(1.35); }
.stat strong, .stat span { display: block; }
.stat strong { margin-bottom: 8px; font-size: 24px; line-height: 1; text-transform: uppercase; }
.stat.assistance strong { font-size: 14px; }
.stat span { color: rgba(255,255,255,.85); font-size: 12px; line-height: 1.45; text-transform: uppercase; }

.projects { padding-bottom: 60px; background: #fff; border-bottom: 1px solid var(--line); }
.projects-heading { margin-bottom: 20px; }
.project-filters { display: flex; justify-content: center; gap: 11px; margin-bottom: 25px; }
.project-filters button { min-width: 132px; height: 40px; padding: 0 18px; border: 1px solid #d6d9dd; border-radius: 2px; background: #fff; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.project-filters button.is-active { border-color: var(--yellow); background: var(--yellow); }
.projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.projects-grid figure { height: 184px; margin: 0; overflow: hidden; border-radius: 4px; background: #dfe3e6; }
.projects-grid figure[hidden] { display: none; }
.project-open { width: 100%; height: 100%; padding: 0; display: block; overflow: hidden; border: 0; background: transparent; cursor: zoom-in; }
.projects-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.project-open:hover img, .project-open:focus-visible img { transform: scale(1.045); }
.project-open:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }

.process { padding-top: 40px; padding-bottom: 52px; }
.process .section-heading { margin-bottom: 26px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 42px; }
.process-grid::before { content: ""; position: absolute; top: 26px; left: 9%; right: 9%; border-top: 1px dashed #8f969d; }
.process-grid article { position: relative; z-index: 1; text-align: center; }
.process-grid b { width: 52px; height: 52px; margin: 0 auto 15px; border-radius: 50%; display: grid; place-items: center; color: #101820; background: var(--yellow); font-size: 20px; }
.process-grid h3 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; }
.process-grid p { max-width: 210px; margin: 0 auto; color: #333b43; font-size: 15px; line-height: 1.25; }

.cta-band { position: relative; overflow: hidden; background: linear-gradient(90deg, var(--yellow) 0%, #f9b917 56%, rgba(245,169,0,.92) 100%); }
.cta-band::after { content: ""; position: absolute; inset: 0 0 0 55%; background: linear-gradient(90deg, rgba(245,169,0,.95), rgba(245,169,0,.25)), url("../img/photos/gerenciamento-obra.webp") center 50% / cover no-repeat; mix-blend-mode: multiply; opacity: .55; }
.cta-inner { position: relative; z-index: 1; min-height: 118px; display: grid; grid-template-columns: 1.15fr 1.05fr 1fr; align-items: center; gap: 40px; }
.cta-inner h2 { margin: 0; font-size: 23px; line-height: 1.12; text-transform: uppercase; }
.cta-inner p { margin: 0; padding-left: 35px; border-left: 1px solid rgba(0,0,0,.35); font-size: 15px; line-height: 1.5; }
.cta-inner .btn { justify-self: center; min-width: 220px; }

.footer { color: #fff; background: linear-gradient(105deg, #101e29, #172c3b); }
.footer-grid { min-height: 330px; padding-top: 43px; padding-bottom: 34px; display: grid; grid-template-columns: 1.18fr .72fr .72fr 1.28fr 1fr; gap: 30px; }
.footer-brand > img { width: 185px; }
.footer-brand > p { margin: 22px 0 0; color: rgba(255,255,255,.69); font-size: 15px; line-height: 1.65; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: grid; place-items: center; }
.socials img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.socials span { font-size: 15px; font-weight: 700; }
.footer h3 { position: relative; margin: 2px 0 18px; padding-bottom: 7px; font-size: 15px; text-transform: uppercase; }
.footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 1px; background: var(--yellow); }
.footer-col a { display: block; margin-bottom: 9px; color: rgba(255,255,255,.75); font-size: 15px; }
.footer-col a:hover { color: var(--yellow); }
.contact-col p { position: relative; min-height: 20px; margin: 0 0 12px; padding-left: 30px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.45; }
.contact-col p img { position: absolute; left: 0; top: 1px; width: 19px; height: 19px; object-fit: contain; filter: saturate(2.4) brightness(1.35); }
.contact-col p img[src$="icone-telefone.svg"] { filter: brightness(0) saturate(100%) invert(72%) sepia(97%) saturate(1440%) hue-rotate(355deg) brightness(99%) contrast(101%); }
.contact-col p span { display: inline-block; margin-left: 0; }
.btn-whatsapp { min-width: 224px; color: #fff; border-color: rgba(255,255,255,.75); background: transparent; font-size: 15px; }
.btn-whatsapp img { width: 25px; height: 25px; filter: brightness(0) invert(1); }
.copyright { min-height: 48px; padding-top: 15px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.55); font-size: 15px; }
.srweb-credit { margin-left: auto; color: rgba(255,255,255,.42); font-size: 15px; white-space: nowrap; }
.srweb-credit:hover, .srweb-credit:focus-visible { color: var(--yellow); }

.lightbox { position: fixed; inset: 0; z-index: 130; display: none; align-items: center; justify-content: center; padding: 28px 72px; }
.lightbox.is-open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(3,9,14,.92); backdrop-filter: blur(5px); }
.lightbox-dialog { position: relative; z-index: 1; width: min(100%, 1180px); height: min(calc(100vh - 56px), 820px); display: flex; align-items: center; justify-content: center; }
.lightbox-dialog figure { width: 100%; max-height: 100%; margin: 0; padding: 0 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.lightbox-dialog img { display: block; width: auto; height: auto; max-width: 100%; max-height: calc(100vh - 130px); margin: 0 auto; object-fit: contain; border-radius: 4px; box-shadow: 0 22px 65px rgba(0,0,0,.45); }
.lightbox-dialog figcaption { min-height: 22px; margin-top: 12px; color: rgba(255,255,255,.8); font-size: 14px; }
.lightbox-close, .lightbox-nav { border: 1px solid rgba(255,255,255,.38); color: #fff; background: rgba(8,19,28,.68); cursor: pointer; }
.lightbox-close:hover, .lightbox-close:focus-visible, .lightbox-nav:hover, .lightbox-nav:focus-visible { border-color: var(--yellow); color: var(--yellow); outline: none; }
.lightbox-close { position: absolute; right: 0; top: 0; z-index: 2; width: 40px; height: 40px; border-radius: 50%; font-size: 28px; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; z-index: 2; width: 52px; height: 64px; border-radius: 3px; font-size: 38px; line-height: 1; transform: translateY(-50%); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,12,18,.78); backdrop-filter: blur(4px); }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 680px); max-height: calc(100vh - 48px); overflow: auto; padding: 38px; border-top: 4px solid var(--yellow); background: #fff; box-shadow: 0 25px 70px rgba(0,0,0,.35); }
.modal-close { position: absolute; right: 14px; top: 10px; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; font-size: 28px; }
.modal-kicker { color: #b77d00; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.modal h2 { margin: 7px 0 24px; font-size: 26px; text-transform: uppercase; }
#contactForm { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#contactForm label { display: grid; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
#contactForm input, #contactForm select, #contactForm textarea { width: 100%; border: 1px solid #cfd3d6; border-radius: 2px; padding: 11px 12px; color: var(--ink); background: #fff; outline: none; font-size: 13px; text-transform: none; }
#contactForm input:focus, #contactForm select:focus, #contactForm textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,169,0,.13); }
#contactForm textarea { resize: vertical; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { min-height: 18px; margin: 0; font-size: 12px; }
.form-status[data-type="success"] { color: #247144; }
.form-status[data-type="error"] { color: #a93027; }
.form-status[data-type="loading"] { color: #9b6a00; }
#contactForm .btn { justify-self: start; }
#contactForm .btn:disabled { cursor: not-allowed; opacity: .65; transform: none; }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: 205px 1fr 140px; gap: 18px; }
  .brand { width: 180px; }
  .nav-menu { gap: 18px; font-size: 10px; }
  .services-grid { gap: 12px; }
  .service-photo { height: 160px; }
  .values article { padding-inline: 20px; }
  .footer-grid { gap: 26px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 760px); }
  .site-header { background: rgba(12,24,34,.97); }
  .nav-wrap { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand { width: 176px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .nav-budget { display: none; }
  .nav-menu { position: absolute; left: 0; right: 0; top: 76px; display: none; padding: 22px 24px 28px; flex-direction: column; align-items: flex-start; gap: 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.12); }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { width: 100%; padding: 12px 0; }
  .hero, .hero-content { min-height: 560px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); padding-block: 16px; }
  .values article { border-bottom: 1px solid rgba(255,255,255,.15); }
  .values article:nth-child(2) { border-right: 0; }
  .values article:nth-child(n+3) { border-bottom: 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .choose-grid { grid-template-columns: 1.5fr repeat(2, 1fr); padding-block: 28px; }
  .choose-intro { grid-row: span 2; }
  .projects-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .contact-col, .footer-attendance { display: none; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .site-header { position: absolute; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 158px; }
  .menu-toggle { width: 36px; height: 36px; padding: 5px; }
  .menu-toggle span { width: 21px; }
  .nav-menu { top: 72px; }

  .hero { min-height: 430px; }
  .hero-photo { object-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,16,24,.9), rgba(7,16,24,.55)), linear-gradient(180deg, rgba(7,16,24,.03), rgba(7,16,24,.45)); }
  .hero-content { min-height: 430px; padding-top: 96px; padding-bottom: 25px; justify-content: flex-start; }
  .hero h1 { font-size: 26px; line-height: 1.12; letter-spacing: -.35px; }
  .hero-title-desktop { display: none; }
  .hero h1.hero-title-mobile { display: block; font-size: 22px; line-height: 1.14; letter-spacing: -.65px; }
  .hero p { margin-top: 18px; font-size: 11px; line-height: 1.55; }
  .hero-actions { width: 100%; margin-top: 18px; flex-direction: column; gap: 8px; }
  .hero-actions .btn { min-width: 0; width: 100%; min-height: 40px; font-size: 9px; }

  .values-grid { min-height: 190px; padding: 14px 0 13px; grid-template-columns: repeat(6, 1fr); row-gap: 8px; }
  .values article { min-height: 76px; padding: 5px 2px; display: flex; flex-direction: column; justify-content: center; gap: 8px; text-align: center; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 0; }
  .values article:nth-child(1) { grid-column: 1 / 3; padding-left: 2px; }
  .values article:nth-child(2) { grid-column: 3 / 5; border-right: 1px solid rgba(255,255,255,.16); }
  .values article:nth-child(3) { grid-column: 5 / 7; border-right: 0; }
  .values article:nth-child(4) { grid-column: 3 / 5; border-right: 0; }
  .values article > img { width: 34px; height: 34px; }
  .values strong { margin: 0; font-size: 15px; }
  .values span { display: none; }

  .section { padding: 36px 0; }
  .section-heading { min-height: 0; margin-bottom: 22px; align-items: flex-start; }
  .section-heading h2 { padding-left: 0; font-size: 18px; }
  .section-heading h2::before { display: none; }
  .section-heading p { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { display: grid; grid-template-columns: 112px 1fr; align-items: center; border: 0; }
  .service-photo { height: 82px; border-radius: 4px; }
  .service-photo span { display: none; }
  .service-copy { min-height: 0; padding: 4px 0 4px 16px; }
  .service-copy h3 { margin-bottom: 7px; font-size: 15px; }
  .service-copy p { font-size: 15px; line-height: 1.45; }

  .choose-grid { min-height: 0; padding: 24px 0; grid-template-columns: 1fr; gap: 5px; }
  .choose-intro { grid-row: auto; padding: 0 0 12px; }
  .choose-intro h2 { margin-bottom: 0; font-size: 16px; }
  .choose-intro p { display: none; }
  .stat { min-height: 44px; padding: 4px 6px; gap: 13px; border-left: 0; }
  .stat img { width: 28px; height: 28px; }
  .stat strong, .stat.assistance strong { display: inline-block; margin: 0 7px 0 0; font-size: 15px; }
  .stat span { display: inline; font-size: 12px; line-height: 1.2; }
  .stat span br { display: none; }

  .projects { padding-bottom: 34px; }
  .projects-heading { margin-bottom: 16px; }
  .project-filters { display: none; }
  .projects-grid { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; margin-right: -16px; padding-right: 16px; }
  .projects-grid::-webkit-scrollbar { display: none; }
  .projects-grid figure, .projects-grid figure:nth-child(n+4) { display: block; flex: 0 0 84px; height: 76px; border-radius: 3px; }

  .process { padding: 30px 0 26px; }
  .process .section-heading { margin-bottom: 18px; }
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .process-grid::before { top: 21px; left: 8%; right: 8%; border-color: #a6abb0; }
  .process-grid b { width: 42px; height: 42px; margin-bottom: 9px; border: 0; outline: 0; font-size: 20px; }
  .process-grid b::after { display: none; }
  .process-grid h3 { margin: 0; font-size: 14px; line-height: 1.25; }
  .process-grid p { display: none; }

  .cta-band::after { left: 40%; opacity: .42; }
  .cta-inner { min-height: 134px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; }
  .cta-inner h2 { font-size: 20px; }
  .cta-inner p { display: none; }
  .cta-inner .btn { justify-self: auto; min-width: 172px; min-height: 38px; font-size: 8px; }

  .footer-grid { min-height: 260px; padding: 38px 0 30px; display: block; }
  .footer-brand > img { width: 172px; }
  .footer-brand > p, .footer-col { display: none; }
  .socials { margin-top: 22px; }
  .socials a { width: 34px; height: 34px; }
  .footer-attendance { display: block; margin-top: 28px; }
  .footer-attendance h3 { display: none; }
  .btn-whatsapp { min-width: 224px; min-height: 48px; }
  .copyright { min-height: 0; padding: 12px 0; display: flex; gap: 10px; font-size: 11px; line-height: 1.35; }
  .srweb-credit { font-size: 11px; }
  .lightbox { padding: 16px 12px; }
  .lightbox-dialog { width: 100%; height: calc(100vh - 32px); }
  .lightbox-dialog figure { width: 100%; padding: 48px 0; }
  .lightbox-dialog img { max-width: 100%; max-height: calc(100vh - 148px); margin: auto; }
  .lightbox-close { right: 4px; top: 4px; }
  .lightbox-nav { width: 42px; height: 54px; font-size: 32px; background: rgba(8,19,28,.82); }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }

  .modal { padding: 12px; }
  .modal-dialog { max-height: calc(100vh - 24px); padding: 30px 20px 22px; }
  .modal h2 { margin-bottom: 18px; font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  #contactForm .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


