:root {
  --ink: #05070c;
  --night: #071426;
  --panel: #101826;
  --yellow: #ffd000;
  --yellow-deep: #f1ad00;
  --blue: #0878ff;
  --blue-soft: #dcecff;
  --red: #d62521;
  --green: #21b455;
  --white: #ffffff;
  --muted: #5f6b7a;
  --line: #d7dee8;
  --shadow: 0 22px 55px rgba(3, 8, 18, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f7fb;
}

body::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(5, 7, 12, 0.92);
  border-bottom: 1px solid rgba(255, 208, 0, 0.35);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
  background: var(--yellow);
  clip-path: polygon(0 0, 78% 0, 58% 36%, 100% 36%, 35% 100%, 48% 56%, 0 56%);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 17px;
  font-weight: 950;
}

.brand small {
  margin-top: 5px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.header-call {
  min-width: max-content;
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 900;
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  min-height: calc(88vh - 76px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 208, 0, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--yellow));
}

.electric-line {
  position: absolute;
  z-index: -1;
  width: 2px;
  height: 320px;
  background: var(--blue);
  box-shadow:
    0 0 18px rgba(8, 120, 255, 0.9),
    0 0 36px rgba(8, 120, 255, 0.55);
  transform: rotate(24deg);
  opacity: 0.7;
}

.electric-line::before,
.electric-line::after {
  content: "";
  position: absolute;
  width: 2px;
  background: inherit;
  box-shadow: inherit;
}

.electric-line::before {
  top: 80px;
  left: -24px;
  height: 90px;
  transform: rotate(-42deg);
}

.electric-line::after {
  top: 166px;
  right: -28px;
  height: 110px;
  transform: rotate(42deg);
}

.electric-line-one {
  top: -58px;
  right: 28%;
}

.electric-line-two {
  right: 10%;
  bottom: -120px;
  transform: rotate(-19deg);
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #855f00;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.9rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1::first-line {
  color: var(--white);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 950;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 208, 0, 0.24);
}

.btn-primary:hover {
  background: #ffe04a;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-dark {
  color: var(--white);
  background: var(--night);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.22);
  border-radius: 999px;
}

.hero-proof {
  align-self: center;
}

.flyer-preview {
  position: relative;
  aspect-ratio: 0.66;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 208, 0, 0.14), transparent 34%),
    var(--panel);
  border: 2px solid rgba(255, 208, 0, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flyer-preview img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flyer-preview img {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.work-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.image-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.34), transparent 45%),
    var(--night);
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.image-fallback span {
  color: var(--yellow);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.85;
  font-weight: 1000;
}

.image-fallback strong {
  max-width: 280px;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.image-fallback small {
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 950;
}

img.is-missing {
  display: none;
}

img.is-missing + .image-fallback {
  opacity: 1;
  visibility: visible;
}

.phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(33, 180, 85, 0.2);
}

.phone-card span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 1000;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}

.quick-strip div {
  min-height: 94px;
  padding: 20px clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(5, 7, 12, 0.28);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
  text-transform: uppercase;
}

.quick-strip strong {
  margin-bottom: 5px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 1000;
}

.quick-strip span {
  font-size: 0.78rem;
  font-weight: 850;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--white);
}

.section-copy,
.section-heading,
.contact-copy {
  max-width: 790px;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.coverage-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.24), transparent),
    var(--night);
  border-left: 8px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-panel strong {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.services-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.96), rgba(5, 7, 12, 0.98)),
    var(--night);
}

.services-section h2 {
  color: var(--white);
}

.services-section .eyebrow.dark {
  color: var(--yellow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: var(--radius);
}

.service-card span {
  color: var(--yellow);
  font-size: 1.24rem;
  line-height: 1;
}

.service-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 850;
}

.emergency-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
}

.emergency-band h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4.2vw, 3.6rem);
}

.gallery-section {
  background: #f4f7fb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 310px;
  gap: 16px;
  margin-top: 32px;
}

.work-card {
  position: relative;
  grid-column: span 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(7, 20, 38, 0.14);
}

.work-card.tall {
  grid-row: span 2;
}

.work-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 11px 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(5, 7, 12, 0.78);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  background: linear-gradient(0deg, rgba(5, 7, 12, 0.72), transparent);
  pointer-events: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-actions {
  justify-content: flex-end;
  max-width: 430px;
}

.contact-actions .btn {
  width: 100%;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.site-footer strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(33, 180, 85, 0.32);
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-proof {
    max-width: 420px;
  }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .emergency-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .work-card {
    grid-column: span 1;
  }

  .work-card.tall {
    grid-row: auto;
  }

  .contact-actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 12px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.83rem;
  }

  .hero {
    padding: 42px 16px 34px;
  }

  h1 {
    font-size: clamp(2.72rem, 16vw, 4.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
  }

  .hero-badges span {
    flex: 1 1 130px;
    text-align: center;
  }

  .flyer-preview {
    min-height: 360px;
  }

  .quick-strip,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .quick-strip div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 7, 12, 0.28);
  }

  .section {
    padding: 48px 16px;
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 3rem);
  }

  .service-card {
    min-height: 72px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 12px 15px;
    font-size: 0.86rem;
  }
}
