:root {
  --ink: #06080d;
  --panel: #0c111d;
  --panel-2: #111827;
  --gold: #f6c85f;
  --gold-2: #ffe6a3;
  --aqua: #2de2e6;
  --green: #32d583;
  --rose: #ff4d6d;
  --text: #f7f7fb;
  --muted: #a8b0c3;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(45,226,230,.16), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(246,200,95,.18), transparent 30%),
    linear-gradient(135deg, #05060a 0%, #0a0f1e 52%, #071912 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  z-index: -1;
}

.splash-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(246,200,95,.24), transparent 24%),
    radial-gradient(circle at 50% 58%, rgba(45,226,230,.12), transparent 30%),
    #03050a;
  animation: splashExit 2.35s ease forwards;
  pointer-events: none;
}

.splash-mark {
  display: grid;
  place-items: center;
  gap: 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  animation: splashMark 2.05s ease forwards;
}

.splash-mark img {
  width: clamp(150px, 24vw, 260px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(246,200,95,.55);
  box-shadow: 0 0 0 10px rgba(246,200,95,.08), 0 0 90px rgba(246,200,95,.36);
}

.splash-mark span {
  font-size: clamp(15px, 2vw, 24px);
  text-shadow: 0 0 24px rgba(246,200,95,.6);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--aqua), var(--green));
  z-index: 1000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(5, 7, 13, .68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand-centerpiece {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  min-width: 210px;
  min-height: 86px;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0 18px 10px;
  isolation: isolate;
}

.brand-aura {
  position: absolute;
  inset: -16px -28px -8px;
  z-index: -1;
  border-radius: 0 0 999px 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,230,163,.36), transparent 35%),
    radial-gradient(circle at 18% 62%, rgba(45,226,230,.22), transparent 26%),
    radial-gradient(circle at 82% 62%, rgba(50,213,131,.18), transparent 26%),
    linear-gradient(180deg, rgba(7,10,18,.88), rgba(7,10,18,.42));
  border: 1px solid rgba(246,200,95,.24);
  border-top: 0;
  box-shadow: 0 18px 54px rgba(0,0,0,.42), 0 0 46px rgba(246,200,95,.18);
  animation: logoAura 4.8s ease-in-out infinite;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(246,200,95,.55);
  box-shadow: 0 0 0 5px rgba(246,200,95,.1), 0 16px 36px rgba(0,0,0,.35), 0 0 34px rgba(246,200,95,.35);
  animation: logoFloat 5.4s ease-in-out infinite;
}

.brand-title {
  white-space: nowrap;
  color: var(--gold-2);
  font-size: 14px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(246,200,95,.42);
  animation: logoTitleGlow 3.6s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #d9deea;
  font-size: 14px;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.menu-toggle { display: none; }

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  background: rgba(246,200,95,.16);
  border-color: rgba(246,200,95,.6);
}

.social-header {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}

.social-header::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.42), transparent 62%);
  transform: translateX(-80%) rotate(12deg);
  transition: transform .55s ease;
}

.social-header:hover::after {
  transform: translateX(80%) rotate(12deg);
}

.instagram-header {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}

.whatsapp-header {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-header span,
.social-header i {
  position: relative;
  z-index: 1;
}

i[data-lucide] {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  line-height: 1;
}

i[data-lucide]::before { content: "•"; }
i[data-lucide="message-circle"]::before { content: "✆"; }
i[data-lucide="instagram"] {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 7px;
}

i[data-lucide="instagram"]::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

i[data-lucide="instagram"]::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
i[data-lucide="layout-dashboard"]::before { content: "▦"; }
i[data-lucide="menu"]::before { content: "☰"; }
i[data-lucide="x"]::before { content: "×"; }
i[data-lucide="building-2"]::before { content: "▥"; }
i[data-lucide="phone-call"]::before,
i[data-lucide="phone"]::before { content: "☎"; }
i[data-lucide="send"]::before { content: "↗"; }
i[data-lucide="mail"]::before { content: "✉"; }
i[data-lucide="map-pin"]::before { content: "⌖"; }
i[data-lucide="lock-keyhole"]::before { content: "⚿"; }
i[data-lucide="bar-chart-3"]::before { content: "▤"; }
i[data-lucide="pencil"]::before { content: "✎"; }
i[data-lucide="folder-kanban"]::before { content: "▣"; }
i[data-lucide="inbox"]::before { content: "▢"; }
i[data-lucide="settings"]::before { content: "⚙"; }
i[data-lucide="download"]::before { content: "↓"; }
i[data-lucide="upload"]::before { content: "↑"; }
i[data-lucide="rotate-ccw"]::before { content: "↺"; }
i[data-lucide="arrow-left"]::before { content: "←"; }
i[data-lucide="images"]::before { content: "▧"; }
i[data-lucide="trash-2"]::before { content: "⌫"; }
i[data-lucide="save"]::before { content: "✓"; }
i[data-lucide="loader"]::before { content: "…"; }
i[data-lucide="hard-hat"]::before { content: "▰"; }
i[data-lucide="drafting-compass"]::before { content: "◇"; }
i[data-lucide="landmark"]::before { content: "▛"; }

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 70px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, .55fr);
  align-items: center;
  gap: 34px;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,10,.8), rgba(5,6,10,.22)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85") center/cover;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.03);
  animation: heroFilm 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(5,6,10,.96));
}

.cinema-layer,
.construction-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinema-layer {
  background:
    linear-gradient(115deg, transparent 4%, rgba(246,200,95,.16) 12%, transparent 24%),
    linear-gradient(250deg, transparent 10%, rgba(45,226,230,.13) 20%, transparent 34%);
  mix-blend-mode: screen;
  animation: lightSweep 7.5s ease-in-out infinite;
}

.construction-lines {
  opacity: .32;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(246,200,95,.55) 18.2%, transparent 18.5% 100%),
    linear-gradient(0deg, transparent 0 72%, rgba(246,200,95,.42) 72.2%, transparent 72.5% 100%),
    repeating-linear-gradient(64deg, transparent 0 34px, rgba(255,230,163,.18) 35px 36px);
  transform: translateX(-8%);
  animation: craneDrift 12s ease-in-out infinite alternate;
}

.hero-orbit {
  position: absolute;
  width: 540px;
  height: 540px;
  right: 10%;
  top: 18%;
  border: 1px solid rgba(246,200,95,.35);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 30px var(--aqua);
}
.hero-orbit::before { top: 34px; left: 92px; }
.hero-orbit::after { bottom: 72px; right: 82px; background: var(--gold); box-shadow: 0 0 30px var(--gold); }

.hero-building {
  position: absolute;
  right: clamp(30px, 10vw, 180px);
  bottom: 7%;
  width: 280px;
  height: 390px;
  opacity: .82;
  background:
    linear-gradient(var(--gold), var(--gold)) 5% 72% / 18% 28% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 30% 48% / 20% 52% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 58% 25% / 22% 75% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 88% 56% / 16% 44% no-repeat;
  filter: drop-shadow(0 0 34px rgba(246,200,95,.38));
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 18%);
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(44px, 8vw, 104px);
  line-height: .92;
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-copy,
.section-head p,
.showcase-copy p,
.about-copy p,
.contact-info p {
  color: #d7deec;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action,
.danger-action {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.primary-action {
  color: #07110d;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 18px 36px rgba(50,213,131,.18);
}

.secondary-action {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.danger-action {
  color: #fff;
  background: rgba(255,77,109,.2);
  border: 1px solid rgba(255,77,109,.45);
}

.primary-action:hover,
.secondary-action:hover,
.danger-action:hover {
  transform: translateY(-2px);
}

.compact { min-height: 42px; padding: 10px 14px; }

.hero-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  padding: 16px;
  background: rgba(8, 12, 22, .76);
  border: 1px solid rgba(246,200,95,.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.hero-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-card span {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.hero-card strong {
  color: var(--gold-2);
  font-size: 28px;
}

.metric-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  background: rgba(11, 17, 29, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.metric-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child { border-right: 0; }
.metric-strip strong {
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--gold);
}
.metric-strip span { color: var(--muted); }

.section-head {
  width: min(900px, 100%);
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filters button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.filters button.active {
  color: #08110f;
  background: linear-gradient(135deg, var(--gold), var(--aqua));
  border-color: transparent;
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.project-card,
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  transform: translateY(0);
  transform-style: preserve-3d;
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(255,255,255,.24), transparent 24%);
  opacity: 0;
  transition: opacity .24s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.2), transparent 65%);
  transform: translateX(-45%) rotate(8deg);
  transition: transform .65s ease;
}

.project-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246,200,95,.52);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
}

.project-card:hover::before { opacity: 1; }
.project-card:hover::after { transform: translateX(45%) rotate(8deg); }

.project-image-wrap {
  position: relative;
  height: 260px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #070b14;
}

.project-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: #070b14;
}

.project-image-wrap img {
  height: 100%;
}

.gallery-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #07110d;
  background: linear-gradient(135deg, var(--gold), var(--green));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}

.gallery-badge svg {
  width: 15px;
  height: 15px;
}

.project-body {
  padding: 18px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #06110e;
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.pill.status-live {
  background: linear-gradient(135deg, var(--green), #b8ffda);
  box-shadow: 0 0 0 0 rgba(50,213,131,.42);
  animation: statusPulse 1.6s ease-in-out infinite;
}

.pill.status-done {
  background: linear-gradient(135deg, var(--aqua), #d8feff);
}

.project-body h3,
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-body p,
.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
  color: #dce5f6;
  font-size: 13px;
}

.project-facts span {
  padding: 10px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
}

.project-facts .detail-chip {
  color: #07110d;
  background: linear-gradient(135deg, var(--gold), var(--aqua));
  font-weight: 900;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
}

.service-card .service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #07110d;
  background: linear-gradient(135deg, var(--gold), var(--green));
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.showcase-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.gallery-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 70px);
  gap: 12px;
}

.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.gallery-stack img:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 5; }
.gallery-stack img:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 4; }
.gallery-stack img:nth-child(3) { grid-column: 5 / 13; grid-row: 4 / 7; }
.gallery-stack img:nth-child(4) { grid-column: 1 / 5; grid-row: 5 / 7; }

.about-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.about-image {
  min-height: 440px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246,200,95,.18), rgba(45,226,230,.12));
  display: grid;
  place-items: center;
  border: 1px solid rgba(246,200,95,.32);
}

.about-image img {
  width: min(78%, 430px);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.about-points div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  color: #dfe8f7;
}

.map-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(246,200,95,.08), rgba(45,226,230,.06)),
    rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.map-copy p {
  color: #d7deec;
  line-height: 1.72;
  font-size: 18px;
}

.map-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(246,200,95,.36);
  border-radius: var(--radius);
  background: #071018;
  box-shadow: var(--shadow);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(246,200,95,.16), transparent 32%, rgba(45,226,230,.12));
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.floating-socials {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 420;
  display: grid;
  gap: 10px;
}

.float-social {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.24);
  animation: floatButton 2.4s ease-in-out infinite;
}

.float-social.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af); }
.float-social.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); animation-delay: .3s; }

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-cards a,
.contact-cards div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}

.contact-cards svg { color: var(--gold); }

.social-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-button {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  border-radius: 999px;
  color: white;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease;
}

.social-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .95;
}

.social-button.instagram::before { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-button.facebook::before { background: linear-gradient(135deg, #1877f2, #0b4fb3); }
.social-button.youtube::before { background: linear-gradient(135deg, #ff0033, #9f001f); }
.social-button.linkedin::before { background: linear-gradient(135deg, #0a66c2, #004182); }

.social-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 900;
}

.social-button strong {
  font-size: 13px;
}

.social-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 38px rgba(0,0,0,.34);
}

.social-button:hover::before {
  animation: socialPulse 1.1s ease infinite alternate;
}

@keyframes socialPulse {
  from { filter: saturate(1); transform: scale(1); }
  to { filter: saturate(1.35); transform: scale(1.06); }
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  background: rgba(11, 17, 29, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #d9e1ee;
  font-weight: 700;
}

.full { grid-column: 1 / -1; width: 100%; }

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  outline: none;
}

select option {
  color: #07110d;
  background: #ffffff;
}

select option:checked {
  color: #ffffff;
  background: #1f6bd6;
}

textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246,200,95,.12);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.file-drop {
  padding: 14px;
  border: 1px dashed rgba(246,200,95,.45);
  border-radius: var(--radius);
  background: rgba(246,200,95,.07);
}

.file-drop input[type="file"] {
  margin-top: 4px;
  padding: 10px;
  border-style: dashed;
  background: rgba(0,0,0,.18);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
}

.admin-shell {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease;
}

.admin-shell.open {
  pointer-events: auto;
  opacity: 1;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(5px);
}

.admin-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 760px);
  height: 100%;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(9,16,29,.98), rgba(10,24,29,.96)),
    #09101d;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 80px rgba(0,0,0,.45);
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow: auto;
}

.admin-shell.open .admin-panel { transform: translateX(0); }

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 460;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.project-modal.open {
  opacity: 1;
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  border: 1px solid rgba(246,200,95,.36);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(10,16,30,.98), rgba(8,13,22,.96));
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(.98);
  transition: transform .28s ease;
}

.project-modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.modal-media {
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 10px;
  padding: 14px;
  background: rgba(0,0,0,.22);
}

.modal-image-stage {
  position: relative;
  height: clamp(360px, 56vh, 560px);
  min-height: 0;
  max-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(246,200,95,.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #05070d;
  touch-action: pan-y;
}

.modal-image-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.26), transparent 18%, transparent 82%, rgba(0,0,0,.26));
}

.modal-image-stage > img,
.modal-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #05070d;
}

.modal-image-stage > img {
  transition: opacity .2s ease, transform .24s ease;
  will-change: transform, opacity;
}

.modal-image-stage > img.is-changing {
  opacity: .18;
  transform: scale(.985);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246,200,95,.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: rgba(6,8,13,.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(246,200,95,.18);
  border-color: rgba(246,200,95,.72);
}

.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.gallery-nav.next i { transform: rotate(180deg); }

.swipe-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #eaf0ff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(4,7,13,.58);
  backdrop-filter: blur(10px);
  opacity: .9;
}

.modal-counter {
  justify-self: center;
  min-height: 24px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.modal-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(86px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.modal-thumbs button {
  height: 78px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.modal-thumbs button.active {
  border-color: var(--gold);
}

.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-content {
  padding: clamp(22px, 3vw, 40px);
  overflow: auto;
}

.modal-content h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3.6vw, 54px);
}

.modal-content p {
  color: #d7deec;
  line-height: 1.72;
  font-size: 17px;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.modal-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}

.modal-facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.modal-facts strong {
  color: var(--gold-2);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid rgba(246,200,95,.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246,200,95,.14), rgba(45,226,230,.1));
}

.admin-top span {
  color: var(--muted);
  font-size: 13px;
}

.admin-top strong {
  display: block;
  font-size: 20px;
}

.icon-button.dark { background: rgba(255,255,255,.07); }

.login-box {
  min-height: 70vh;
  display: grid;
  place-content: center;
  gap: 16px;
}

.login-box img {
  width: 160px;
  justify-self: center;
  border-radius: var(--radius);
}

.login-box p {
  color: var(--muted);
  text-align: center;
}

.admin-workspace { display: none; }
.admin-workspace.active { display: block; }

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.admin-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 7px;
  font-size: 12px;
  font-weight: 800;
}

.admin-tabs button.active {
  background: linear-gradient(135deg, rgba(246,200,95,.28), rgba(45,226,230,.2));
  border-color: rgba(246,200,95,.45);
}

.admin-tab { display: none; }
.admin-tab.active { display: block; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-card,
.chart-box,
.admin-list article,
.admin-form,
.settings-actions,
.admin-note {
  background: rgba(255,255,255,.075);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.dash-card:nth-child(1) { border-color: rgba(246,200,95,.36); }
.dash-card:nth-child(2) { border-color: rgba(45,226,230,.34); }
.dash-card:nth-child(3) { border-color: rgba(50,213,131,.34); }
.dash-card:nth-child(4) { border-color: rgba(255,77,109,.32); }

.dash-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.dash-card strong {
  color: var(--gold);
  font-size: 22px;
}

.chart-box { margin-top: 12px; }
.visit-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 110px;
}

.visit-bars div {
  display: grid;
  align-content: end;
  gap: 6px;
  height: 100%;
}

.visit-bars b {
  display: block;
  min-height: 10px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--aqua), var(--green));
}

.visit-bars span {
  font-size: 11px;
  color: var(--muted);
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.admin-form label {
  gap: 5px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  min-height: 38px;
  padding: 9px 10px;
}

.admin-form textarea {
  min-height: 92px;
}

.brand-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(246,200,95,.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246,200,95,.13), rgba(45,226,230,.1));
}

.brand-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(246,200,95,.5);
}

.brand-preview strong,
.brand-preview span {
  display: block;
}

.brand-preview span {
  color: var(--muted);
  margin-top: 4px;
}

.admin-form h3,
.admin-list h3 {
  grid-column: 1 / -1;
  margin: 0;
}

.admin-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.admin-list article {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 10px;
  align-items: center;
}

.admin-list article.message-unread {
  padding: 10px;
  border: 1px solid rgba(246,200,95,.58);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246,200,95,.13), rgba(255,255,255,.06));
}

.admin-list article.message-read {
  opacity: .74;
}

.message-status {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #07110d;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.message-read .message-status {
  background: var(--aqua);
}

.admin-list img {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius);
}

.admin-list p {
  color: var(--muted);
  margin: 4px 0 0;
}

.small-actions {
  display: flex;
  gap: 8px;
}

.small-actions button {
  min-width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-action input { display: none; }
.admin-note { color: var(--muted); margin-top: 12px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 700;
  min-width: min(92vw, 320px);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #07110d;
  background: linear-gradient(135deg, var(--gold), var(--green));
  font-weight: 800;
  text-align: center;
  transform: translate(-50%, 150%);
  transition: transform .26s ease;
  box-shadow: var(--shadow);
}

.toast.show { transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }

.hero .reveal {
  opacity: 1;
  transform: translateY(0);
  animation: heroIn .82s ease both;
}

.hero .delay-1 {
  animation-delay: .16s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: saturate(1); }
  50% { transform: translateY(5px) scale(1.04); filter: saturate(1.18); }
}

@keyframes logoAura {
  0%, 100% { opacity: .78; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes logoTitleGlow {
  0%, 100% { color: var(--gold-2); }
  50% { color: #ffffff; }
}

@keyframes splashExit {
  0%, 72% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes splashMark {
  0% { opacity: 0; transform: translateY(18px) scale(.82); filter: blur(8px); }
  42% { opacity: 1; transform: translateY(0) scale(1.06); filter: blur(0); }
  72% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-42px) scale(.56); }
}

@keyframes heroFilm {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, .8%, 0); }
}

@keyframes lightSweep {
  0%, 100% { opacity: .15; transform: translateX(-24%); }
  48% { opacity: .7; transform: translateX(18%); }
}

@keyframes craneDrift {
  from { transform: translateX(-8%) translateY(0); }
  to { transform: translateX(4%) translateY(-2%); }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(50,213,131,.38); }
  50% { box-shadow: 0 0 0 8px rgba(50,213,131,0); }
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1020px) {
  .project-grid,
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero,
  .showcase-section,
  .about-section,
  .map-section,
  .contact-section { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
}

@media (min-width: 1440px) {
  .section { padding-left: max(70px, calc((100vw - 1320px) / 2)); padding-right: max(70px, calc((100vw - 1320px) / 2)); }
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .5fr); }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
  h1 { font-size: clamp(48px, 7vw, 82px); }
  .hero { gap: 24px; }
  .hero-card { width: min(100%, 330px); }
  .project-image-wrap,
  .project-card img { height: 230px; }
  .admin-panel { width: min(100%, 640px); }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    padding: 10px 14px;
    flex-wrap: wrap;
  }
  .brand-centerpiece {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    min-width: 0;
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px 6px;
  }
  .brand-aura {
    inset: -8px -16px -5px;
    border-radius: 0 0 999px 999px;
    border-top: 0;
  }
  .brand img {
    width: 54px;
    height: 54px;
  }
  .brand-title {
    font-size: 11px;
  }
  .menu-toggle { display: inline-grid; }
  .main-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .24s ease, padding .24s ease;
  }
  .main-nav.open {
    max-height: 120px;
    opacity: 1;
    padding-top: 8px;
  }
  .main-nav a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
    padding: 8px;
    text-align: center;
  }
  .main-nav a::after {
    display: none;
  }
  .brand span { font-size: 14px; }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(5,6,10,.9), rgba(5,6,10,.68)),
      url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85") center/cover;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 18px rgba(0,0,0,.72);
  }
  .hero-building {
    right: -48px;
    bottom: 18%;
    width: 220px;
    height: 310px;
    opacity: .5;
  }
  .hero-orbit {
    right: -210px;
    top: 12%;
    opacity: .45;
  }
  .hero-card {
    position: relative;
    z-index: 2;
  }
  .metric-strip {
    margin-top: -28px;
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-strip div:nth-child(2) { border-right: 0; }
  .showcase-section,
  .about-section,
  .map-section,
  .contact-section {
    gap: 22px;
  }
  .contact-form { grid-template-columns: 1fr; }
  .admin-panel {
    width: 100%;
    border-left: 0;
  }
  .modal-card {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .modal-media {
    min-height: auto;
  }
  .modal-image-stage,
  .modal-media > img {
    height: clamp(280px, 46vh, 380px);
    min-height: 0;
    max-height: 380px;
  }
  .modal-image-stage > img {
    min-height: 0;
    max-height: none;
  }
  .modal-content {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 16px;
  }
  .brand img { width: 52px; height: 52px; }
  .header-actions {
    gap: 5px;
  }
  .icon-button {
    width: 38px;
    height: 38px;
  }
  .main-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav.open {
    max-height: 220px;
  }
  h1 {
    font-size: clamp(42px, 15vw, 64px);
    line-height: .94;
  }
  h2 {
    font-size: clamp(28px, 10vw, 42px);
  }
  .hero-copy,
  .section-head p,
  .showcase-copy p,
  .about-copy p,
  .contact-info p {
    font-size: 16px;
    line-height: 1.62;
  }
  .hero-actions,
  .settings-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .primary-action,
  .secondary-action,
  .danger-action {
    width: 100%;
  }
  .hero-card {
    grid-template-columns: 74px 1fr;
    width: 100%;
    padding: 12px;
  }
  .hero-card img {
    width: 74px;
    height: 74px;
  }
  .hero-card strong {
    font-size: 22px;
  }
  .metric-strip,
  .project-grid,
  .service-grid,
  .contact-form,
  .about-points,
  .dash-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }
  .metric-strip {
    width: calc(100% - 32px);
  }
  .metric-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metric-strip div:last-child { border-bottom: 0; }
  .project-image-wrap,
  .project-card img { height: 210px; }
  .project-facts { grid-template-columns: 1fr; }
  .filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .filters button {
    min-height: 44px;
  }
  .about-image {
    min-height: 310px;
  }
  .gallery-stack {
    grid-template-rows: repeat(8, 52px);
  }
  .gallery-stack img:nth-child(1) { grid-column: 1 / 13; grid-row: 1 / 4; }
  .gallery-stack img:nth-child(2) { grid-column: 1 / 7; grid-row: 4 / 7; }
  .gallery-stack img:nth-child(3) { grid-column: 7 / 13; grid-row: 4 / 7; }
  .gallery-stack img:nth-child(4) { grid-column: 1 / 13; grid-row: 7 / 9; }
  .admin-list article { grid-template-columns: 1fr; }
  .admin-list img { width: 100%; height: 160px; }
  .admin-panel { padding: 14px; }
  .admin-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-tabs button {
    justify-content: center;
    min-height: 44px;
  }
  .modal-facts {
    grid-template-columns: 1fr;
  }
  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .modal-thumbs {
    grid-auto-columns: 92px;
  }
  .login-box {
    min-height: 62vh;
  }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .floating-socials {
    right: 12px;
    bottom: 12px;
  }
  .float-social {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .brand-title { display: none; }
  .site-header { gap: 8px; }
  .header-actions { margin-left: auto; }
  .header-actions { gap: 4px; }
  .icon-button {
    width: 34px;
    height: 34px;
  }
  .social-header span {
    font-size: 11px;
  }
  i[data-lucide] {
    width: 17px;
    height: 17px;
  }
  .hero {
    padding-top: 104px;
    padding-bottom: 54px;
  }
  h1 {
    font-size: clamp(38px, 16vw, 56px);
  }
  .eyebrow {
    font-size: 12px;
  }
  .project-image-wrap,
  .project-card img { height: 190px; }
  .filters,
  .admin-tabs {
    grid-template-columns: 1fr;
  }
  .contact-cards a,
  .contact-cards div {
    align-items: flex-start;
  }
  .toast {
    bottom: 14px;
    min-width: calc(100% - 28px);
  }
  .modal-card {
    width: 100%;
    max-height: 100vh;
    margin: 0;
    border-left: 0;
    border-right: 0;
  }
  .modal-media {
    padding: 10px;
  }
  .modal-image-stage,
  .modal-media > img {
    height: clamp(230px, 42vh, 310px);
    min-height: 0;
  }
  .modal-image-stage > img { min-height: 0; }
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-nav.prev { left: 8px; }
  .gallery-nav.next { right: 8px; }
  .modal-content {
    padding: 18px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-height: 680px) and (min-width: 821px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 70px;
  }
  h1 {
    font-size: clamp(44px, 6vw, 76px);
  }
}
