:root {
  --bg: #070808;
  --panel: #101214;
  --panel-2: #171a1d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f7f8;
  --muted: #a7adb4;
  --amber: #ffb21a;
  --orange: #ff6a1a;
  --danger: #ff3d2e;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 178, 26, 0.08), transparent 32rem),
    linear-gradient(180deg, #0b0c0d 0%, var(--bg) 38%, #0b0b0b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader span {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 0 28px rgba(255, 178, 26, .55);
  animation: loadbar 1s ease-in-out infinite alternate;
}
.loaded .loader { opacity: 0; visibility: hidden; }
@keyframes loadbar { from { transform: scaleX(.3); } to { transform: scaleX(1.35); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px clamp(18px, 5vw, 72px);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 8, 8, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .brand img {
  width: 184px;
  height: 112px;
}
.site-header.is-scrolled .brand::before {
  width: 160px;
  height: 58px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 230px;
  max-width: 310px;
  margin-left: clamp(18px, 3vw, 46px);
  font-weight: 900;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: 74px;
  transform: translate(-50%, -48%);
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255,178,26,.18), transparent 66%),
    linear-gradient(90deg, transparent, rgba(255,178,26,.22), transparent);
  filter: blur(22px);
  opacity: .9;
  pointer-events: none;
}
.brand img {
  width: 218px;
  height: 132px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.22))
    drop-shadow(0 18px 28px rgba(0,0,0,.72))
    drop-shadow(0 0 10px rgba(255,178,26,.2));
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 178, 26, .45);
  background: linear-gradient(135deg, #202020, #070707);
  color: var(--amber);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 38px);
  color: rgba(246,247,248,.9);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .01em;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  text-shadow: 0 12px 24px rgba(0,0,0,.45);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(.22);
  transform-origin: center;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  box-shadow: 0 0 18px rgba(255,178,26,.52);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 178, 26, .4);
  background: rgba(255, 178, 26, .08);
  color: var(--amber);
  font-weight: 900;
}
.header-call svg, .btn svg, .eyebrow svg, .mobile-cta svg { width: 19px; height: 19px; }

.setup-warning {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 60;
  padding: 12px 16px;
  background: #241807;
  color: var(--amber);
  border: 1px solid rgba(255, 178, 26, .4);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
  padding: 150px clamp(18px, 5vw, 72px) 76px;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45) 48%, rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.75));
}
.hero-content, .emergency-card { position: relative; z-index: 2; }
.hero-content { max-width: 920px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .14em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .95;
  font-weight: 900;
}
.hero p {
  max-width: 720px;
  color: #d9dde1;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}
.hero-actions, .contact-actions, .install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #111;
  box-shadow: 0 18px 45px rgba(255, 106, 26, .24);
}
.btn-ghost {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  color: var(--text);
  backdrop-filter: blur(16px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-color: rgba(37, 211, 102, .45);
  color: #04160b;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .2);
}
.btn:hover { transform: translateY(-2px); transition: transform .2s ease; }

.emergency-card {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(255, 178, 26, .24);
  background:
    radial-gradient(circle at 18% 8%, rgba(255,178,26,.16), transparent 34%),
    linear-gradient(145deg, rgba(24,26,28,.92), rgba(5,5,5,.78));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08), inset 0 -1px 0 rgba(255,178,26,.08), 0 0 50px rgba(255,178,26,.12);
  overflow: hidden;
}
.emergency-card::before,
.service-card::before,
.stats div::before,
.why-row::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}
.emergency-card:hover::before,
.service-card:hover::before,
.stats div:hover::before,
.why-row:hover::before,
.site-footer:hover::before {
  transform: translateX(120%);
}
.emergency-card span {
  color: var(--danger);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
}
.emergency-card strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--amber);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}
.emergency-card p { color: var(--muted); line-height: 1.6; }
.emergency-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 900;
}
.emergency-card a.whatsapp-text-link {
  color: var(--whatsapp);
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px);
}
.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.03;
  font-weight: 900;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 16% 8%, rgba(255,178,26,.12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 42px rgba(0,0,0,.22);
}
.service-card:hover {
  border-color: rgba(255, 178, 26, .48);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.36), 0 0 34px rgba(255,178,26,.12);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--amber);
  margin-bottom: 28px;
}
.service-card h3, .why-row h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.service-card p, .why-row p, .about-copy p, .contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}
.contact-address {
  display: block;
  margin-top: 18px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}
.about-visual {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  transform-origin: center;
}
.about-visual:hover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.58), 0 0 44px rgba(255,178,26,.12);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.76));
  border: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stats div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,178,26,.22);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,178,26,.14), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 36px rgba(0,0,0,.24);
}
.stats strong {
  display: block;
  color: var(--amber);
  font-size: 24px;
  font-weight: 900;
}
.stats span { color: var(--muted); font-size: 13px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
  transition: transform .45s ease, filter .45s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.12);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.88));
}
.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-weight: 900;
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 88%, rgba(37,211,102,.08), transparent 28rem),
    radial-gradient(circle at 8% 12%, rgba(255,178,26,.1), transparent 28rem);
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 13px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.why > * {
  position: relative;
  z-index: 1;
}
.why .section-head {
  max-width: 1040px;
}
.why .section-head h2 {
  text-shadow: 0 18px 46px rgba(0,0,0,.52);
}
.why-list {
  display: grid;
  gap: 12px;
}
.why-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px 220px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(255,178,26,.2);
  background:
    radial-gradient(circle at 4% 50%, rgba(255,178,26,.14), transparent 18rem),
    linear-gradient(90deg, rgba(255,178,26,.075), rgba(255,255,255,.026));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 34px rgba(0,0,0,.2);
}
.why-row:hover {
  transform: translateX(6px);
  border-color: rgba(255,178,26,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 24px 54px rgba(0,0,0,.32), 0 0 30px rgba(255,178,26,.1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-row svg {
  width: 36px;
  height: 36px;
  color: var(--amber);
}
.why-row h3, .why-row p { margin-bottom: 0; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: #0d0e0f;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-box {
  min-height: 420px;
  background: linear-gradient(145deg, #15181b, #090909);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-box div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.map-box svg { color: var(--amber); }

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 44px clamp(18px, 5vw, 72px) 104px;
  background:
    radial-gradient(circle at 88% 30%, rgba(255,178,26,.11), transparent 22rem),
    radial-gradient(circle at 12% 72%, rgba(37,211,102,.07), transparent 22rem),
    linear-gradient(180deg, #070707, #030303);
  border-top: 1px solid rgba(255,178,26,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.footer-brand img {
  width: 150px;
  height: 124px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.68)) drop-shadow(0 0 14px rgba(255,178,26,.22));
}
.footer-brand strong { display: block; font-size: 24px; }
.footer-brand span { color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}
.badge-247 {
  padding: 16px 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,178,26,.22), transparent 60%),
    rgba(255,178,26,.12);
  color: var(--amber);
  border: 1px solid rgba(255,178,26,.36);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(255,178,26,.12);
}
.footer-credit {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(167,173,180,.78);
  font-size: 13px;
  font-weight: 700;
}
.footer-credit a {
  color: var(--amber);
  font-weight: 900;
}
.mobile-cta { display: none; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #04160b;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 0 34px rgba(37,211,102,.22);
  font-weight: 900;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.about-visual.reveal {
  transition: opacity .65s ease, transform .65s ease, box-shadow .35s ease, filter .35s ease;
}
.about-visual.reveal.is-visible:hover {
  transform: scale(1.025);
}

.install-body, .admin-login-body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px;
}
.install-panel, .login-card {
  width: min(100%, 560px);
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.muted { color: var(--muted); }
.error-box, .success-box {
  padding: 14px 16px;
  margin: 16px 0;
  border: 1px solid rgba(255, 61, 46, .35);
  background: rgba(255, 61, 46, .1);
  color: #ffd6d2;
}
.success-box {
  border-color: rgba(255, 178, 26, .35);
  background: rgba(255, 178, 26, .1);
  color: #ffe6b1;
}

.admin-body {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #090a0b;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #060606;
}
.admin-sidebar strong { display: block; margin-bottom: 28px; font-size: 22px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar a {
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 800;
}
.admin-sidebar a:hover { color: var(--amber); }
.admin-main { padding: 34px; }
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.admin-top h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 0; }
.admin-panel {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.admin-panel h2 { font-size: 28px; margin-bottom: 18px; }
.admin-form {
  display: grid;
  gap: 14px;
}
.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}
.admin-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
}
.admin-form input, .admin-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0c0d0e;
  color: var(--text);
  font: inherit;
}
.admin-form textarea { min-height: 112px; resize: vertical; }
.admin-form .wide { grid-column: 1 / -1; }
.compact-form { margin-bottom: 20px; }
.admin-list, .admin-gallery {
  display: grid;
  gap: 10px;
}
.admin-list article {
  padding: 14px;
  border: 1px solid var(--line);
  background: #0d0e0f;
}
.admin-list span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.admin-list button, .admin-gallery button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 61, 46, .38);
  background: rgba(255, 61, 46, .12);
  color: #ffd6d2;
  cursor: pointer;
}
.service-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}
.service-edit-form {
  min-width: 0;
}
.service-editor-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.service-editor-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,178,26,.34);
  background: rgba(255,178,26,.08);
  color: var(--amber);
}
.service-editor-head svg {
  width: 24px;
  height: 24px;
}
.service-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 12px;
}
.service-editor-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.delete-form {
  align-self: start;
}
.admin-check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  width: fit-content;
  color: var(--text) !important;
}
.admin-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--amber);
}
.icon-picker {
  display: grid;
  grid-template-columns: repeat(8, minmax(74px, 1fr));
  gap: 8px;
}
.icon-picker button {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 76px;
  padding: 9px 7px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}
.icon-picker button:hover,
.icon-picker button.is-selected {
  border-color: rgba(255,178,26,.56);
  background: rgba(255,178,26,.12);
  color: var(--amber);
}
.icon-picker svg {
  width: 24px;
  height: 24px;
}
.admin-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-gallery article {
  padding: 10px;
  border: 1px solid var(--line);
  background: #0d0e0f;
}
.admin-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 10px;
}
.admin-gallery strong { display: block; margin-bottom: 10px; }
.gallery-editor {
  display: grid;
  gap: 12px;
}
.gallery-editor .btn {
  width: 100%;
}
.admin-preview img {
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}
.admin-back { display: inline-block; margin-top: 18px; color: var(--amber); font-weight: 900; }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; align-items: end; }
  .emergency-card { max-width: 480px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-section, .split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .site-header {
    padding: 12px 16px;
    background: rgba(7, 8, 8, .82);
    backdrop-filter: blur(16px);
  }
  .brand {
    min-width: 0;
    max-width: 174px;
    margin-left: 0;
    padding: 0;
  }
  .brand::before {
    width: 144px;
    height: 56px;
    filter: blur(18px);
  }
  .brand img {
    width: 164px;
    height: 98px;
  }
  .brand-mark { width: 42px; height: 42px; }
  .header-call { display: none; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255,178,26,.18);
    background:
      radial-gradient(circle at 18% 0%, rgba(255,178,26,.12), transparent 42%),
      rgba(7,8,8,.97);
    box-shadow: 0 26px 70px rgba(0,0,0,.58);
    backdrop-filter: blur(18px);
  }
  .nav-links.is-open {
    display: grid;
    gap: 6px;
  }
  .nav-links a {
    min-height: 52px;
    padding: 0 16px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a::after { display: none; }
  .hero {
    min-height: 92svh;
    padding: 118px 18px 48px;
  }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  h2 { font-size: clamp(30px, 10vw, 44px); }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .emergency-card { padding: 20px; }
  .section, .contact-section { padding: 64px 18px; }
  .service-grid, .stats, .gallery-grid, .why-row, .admin-grid, .admin-gallery {
    grid-template-columns: 1fr;
  }
  .service-editor,
  .service-editor-grid {
    grid-template-columns: 1fr;
  }
  .delete-form {
    justify-self: stretch;
  }
  .delete-form button {
    width: 100%;
  }
  .icon-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid { grid-auto-rows: 260px; }
  .gallery-item:first-child { grid-row: span 1; }
  .about-visual, .map-box { min-height: 320px; }
  .why-row { gap: 10px; }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 34px 18px 96px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-brand img {
    width: 122px;
    height: 100px;
  }
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #111;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0,0,0,.42);
  }
  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #04160b;
    border: 1px solid rgba(37, 211, 102, .45);
  }
  .whatsapp-float { display: none; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .admin-main { padding: 18px; }
  .admin-top { align-items: flex-start; flex-direction: column; }
}
