﻿:root {
  --ink: #141414;
  --muted: #62656a;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --steel: #243449;
  --blue: #1377c7;
  --blue-dark: #09508d;
  --line: #dfded8;
  --gold: #d8a23d;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  color: var(--steel);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  color: #fff;
  background: var(--blue);
}

.brand img {
  width: 154px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--steel);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a,
.header-action,
.primary-button,
.secondary-button,
.contact-form button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.header-action:hover,
.primary-button:hover,
.secondary-button:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}

.header-action,
.primary-button,
.contact-form button {
  background: var(--blue);
  color: #fff;
  border: 0;
}

.header-action {
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.social-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(10, 15, 22, 0.24);
  transition: transform 180ms ease, filter 180ms ease;
}

.social-link:hover {
  transform: translateX(-3px);
  filter: brightness(1.08);
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: #c13584;
}

.tiktok {
  background: #111111;
}

.messenger {
  background: #0084ff;
}

.email {
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f1824;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 15, 22, 0.88), rgba(10, 15, 22, 0.46) 54%, rgba(10, 15, 22, 0.22)),
    linear-gradient(0deg, rgba(10, 15, 22, 0.62), transparent 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 92px) clamp(18px, 6vw, 82px);
  color: #fff;
}

.hero-logo {
  width: min(360px, 74vw);
  height: 146px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 8px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 900;
}

.primary-button:hover,
.contact-form button:hover {
  background: var(--blue-dark);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 26px clamp(18px, 4vw, 52px);
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--steel);
  font-size: 1.2rem;
}

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

.section,
.work-band,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  margin-bottom: 30px;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: var(--steel);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

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

.service-card {
  display: block;
  min-height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 162, 61, 0.45);
  box-shadow: 0 22px 42px rgba(20, 20, 20, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(0.96) contrast(0.99);
  transition: transform 320ms ease, filter 320ms ease;
}

.service-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.03);
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  margin: 0;
  color: var(--steel);
  font-size: 1.22rem;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.work-band {
  background: #1d2732;
  color: #fff;
}

.work-band .section-heading h2 {
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  perspective: 1000px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(18px) scale(0.96) rotateX(2deg);
  filter: saturate(0.96) contrast(0.98);
  animation: galleryReveal 680ms ease forwards;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform, opacity;
}

.gallery img:nth-child(2) { animation-delay: 80ms; }
.gallery img:nth-child(3) { animation-delay: 160ms; }
.gallery img:nth-child(4) { animation-delay: 240ms; }
.gallery img:nth-child(5) { animation-delay: 320ms; }
.gallery img:nth-child(6) { animation-delay: 400ms; }
.gallery img:nth-child(7) { animation-delay: 480ms; }
.gallery img:nth-child(8) { animation-delay: 560ms; }
.gallery img:nth-child(9) { animation-delay: 640ms; }
.gallery img:nth-child(10) { animation-delay: 720ms; }

.gallery img:hover {
  z-index: 2;
  transform: translateY(-8px) scale(1.045) rotateX(0);
  filter: saturate(1.12) contrast(1.04) brightness(1.04);
  border-color: rgba(216, 162, 61, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

@keyframes galleryReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .gallery img:hover {
    transform: none;
  }
}

.carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(260px, 32%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  perspective: 900px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(0) scale(0.98);
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  filter: saturate(0.95) contrast(0.99);
}

.carousel-track img:hover {
  transform: translateY(-6px) scale(1.035);
  filter: saturate(1.1) contrast(1.03) brightness(1.03);
  border-color: rgba(216, 162, 61, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  background: #fff;
}

.contact-section p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9c8c1;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(19, 119, 199, 0.2);
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #111820;
}

.footer-brand img {
  width: 138px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: #fff;
  font-weight: 900;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.cloudix-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 0;
  color: #d9d9d9;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.cloudix-credit img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: transparent;
}

.cloudix-credit span {
  color: #dcdcdc;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 82px);
  color: #fff;
  background: #0f1824;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 15, 22, 0.86), rgba(10, 15, 22, 0.36)),
    linear-gradient(0deg, rgba(10, 15, 22, 0.62), transparent 46%);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.confidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.confidence-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--steel);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.confidence-section p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.confidence-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.07);
}

.confidence-grid h3 {
  margin: 0;
  color: var(--steel);
  font-size: 1.18rem;
}

.confidence-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #fbfaf6;
  border-top: 1px solid var(--line);
}

.feature-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.98;
}

.feature-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-photos {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 14px;
}

.feature-photos img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 32, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.16);
}

.feature-photos img:first-child {
  grid-row: 1 / 3;
}

.detail-section h2 {
  margin: 0;
  color: var(--steel);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
}

.detail-list {
  color: var(--muted);
  font-size: 1.06rem;
}

.detail-list p {
  margin: 0 0 22px;
}

.detail-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
}

.detail-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 2px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .carousel-track {
    grid-auto-columns: minmax(240px, 58%);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .detail-section {
    grid-template-columns: 1fr;
  }

  .confidence-section {
    grid-template-columns: 1fr;
  }

  .feature-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    gap: 10px 16px;
  }

  .brand img {
    width: 132px;
    height: 44px;
  }

  .header-action {
    padding: 10px 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(10, 15, 22, 0.88), rgba(10, 15, 22, 0.44)),
      linear-gradient(90deg, rgba(10, 15, 22, 0.58), transparent);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 44px;
  }

  .hero-logo {
    width: min(300px, 86vw);
    height: 116px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cloudix-credit {
    justify-self: start;
  }

  .social-rail {
    right: 8px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .carousel {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-track {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-auto-columns: 82%;
  }

  .carousel-button {
    grid-row: 2;
    width: 100%;
  }

  .cloudix-credit span {
    font-size: 0.78rem;
    white-space: normal;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .feature-photos {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .feature-photos img:first-child {
    grid-row: auto;
  }
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.video-copy h2,
.login-panel h1,
.gallery-manager h1 {
  margin: 0;
  color: var(--steel);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.02;
}

.video-copy p:not(.eyebrow),
.login-panel p,
.gallery-manager-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.coverage-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 64px) clamp(18px, 5vw, 72px);
  background: #f4f1ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-callout h2 {
  max-width: 820px;
  margin: 0;
  color: var(--steel);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.04;
}

.coverage-callout p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.coverage-phone {
  display: grid;
  gap: 6px;
  min-width: min(320px, 100%);
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.2);
}

.coverage-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-phone strong {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}
.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 32, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.18);
  background: #000;
}

.login-section,
.gallery-manager {
  min-height: 70vh;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.login-section {
  display: grid;
  place-items: center;
}

.login-panel {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-form,
.admin-access-menu {
  display: grid;
  gap: 16px;
}

.admin-access-menu[hidden],
.login-form[hidden] {
  display: none;
}

.admin-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.admin-menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.14);
}

.admin-menu-primary {
  color: #fff;
  background: var(--blue);
}

.admin-menu-secondary {
  color: var(--steel);
  background: rgba(19, 119, 199, 0.1);
  border: 1px solid rgba(19, 119, 199, 0.28);
}

.admin-menu-muted {
  color: #fff;
  background: var(--steel);
}
.login-panel label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

.login-panel input {
  width: 100%;
  border: 1px solid #c9c8c1;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.login-panel button,
.gallery-tools button,
.upload-button,
.gallery-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.login-error {
  margin: 0;
  color: #b42318;
  font-weight: 800;
}

.gallery-manager-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.gallery-tools,
.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.upload-button input {
  display: none;
}

.gallery-tools button.is-active,
.gallery-actions button:first-child {
  background: var(--blue-dark);
}

.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.gallery-admin-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.07);
}

.gallery-admin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-admin-card span {
  display: block;
  padding: 10px 12px;
  color: var(--steel);
  font-weight: 800;
  font-size: 0.9rem;
}

.select-photo {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.delete-mode .select-photo,
.gallery-admin-card:hover .select-photo,
.gallery-admin-card.is-selected .select-photo {
  opacity: 1;
  transform: scale(1);
}

.gallery-admin-card.is-selected .select-photo {
  background: var(--blue);
  box-shadow: inset 0 0 0 4px #fff;
}

.gallery-actions {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .video-showcase,
  .coverage-callout,
  .gallery-manager-head {
    grid-template-columns: 1fr;
  }

  .coverage-phone {
    justify-self: stretch;
  }

  .gallery-tools,
  .gallery-actions {
    justify-content: flex-start;
  }
}

.compact-hero {
  min-height: 460px;
}

.public-gallery-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.public-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.public-gallery-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.07);
}

.public-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.public-gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.public-gallery-card span {
  display: block;
  padding: 12px 14px;
  color: var(--steel);
  font-weight: 900;
}








.admin-access-menu h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  overflow-wrap: anywhere;
}








