:root {
  --black: #09090b;
  --ink: #151517;
  --soft-ink: #3c3d42;
  --white: #ffffff;
  --paper: #f6f4ef;
  --muted: #d8d5ce;
  --red: #e00015;
  --deep-red: #82000b;
  --cyan: #00d7ff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 16px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    repeating-conic-gradient(var(--black) 0 25%, var(--white) 0 50%) 0 0 / 42px 42px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.brand-float {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 3;
  width: 179px;
  transform: translateX(-50%);
  pointer-events: auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-float img {
  width: 100%;
  height: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  max-width: 1120px;
  margin: 58px auto 0;
  padding: 10px 12px 10px 24px;
  color: var(--white);
  background: rgba(8, 8, 10, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-call:hover,
.nav-call:focus {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
  outline: none;
}

.nav-call {
  background: var(--red);
  font-weight: 800;
}

.nav-call svg,
.btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 84svh;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0), var(--paper));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.2));
  background-size: 76px 76px, 76px 76px, auto;
}

.speed-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(224, 0, 21, 0.7) 36.2% 36.7%, transparent 37% 100%),
    linear-gradient(112deg, transparent 0 64%, rgba(0, 215, 255, 0.34) 64.2% 64.5%, transparent 64.8% 100%);
  animation: lineSweep 5.5s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 36px;
  min-height: 76svh;
  padding: 84px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-family: Impact, Arial Black, Arial, Helvetica, sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.24rem;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--red);
  box-shadow: 0 0 0 rgba(224, 0, 21, 0.4);
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 16px 38px rgba(224, 0, 21, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.hero-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  max-width: 430px;
  justify-self: end;
  transform-style: preserve-3d;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(260px, 78%);
  padding: 15px;
  color: var(--white);
  background: rgba(9, 9, 11, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.panel-note strong,
.panel-note span {
  display: block;
}

.panel-note span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 42px;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  margin-top: 9px;
  background: var(--white);
  border-radius: 3px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

.section {
  padding: 84px 0;
}

.section-band {
  padding: 84px 0;
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-info p,
.offer-wrap p {
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-copy p {
  margin: 18px 0 0;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-main {
  width: 82%;
  height: 430px;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 260px;
  border: 8px solid var(--paper);
}

.services,
.trust-section {
  background:
    linear-gradient(180deg, #ffffff, #f4f1eb),
    var(--paper);
}

.section-heading {
  max-width: 760px;
  margin: 0 0 32px;
}

.section-heading p {
  margin: 16px 0 0;
}

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

.service-card,
.trust-card {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 0, 21, 0.22);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.13);
}

.service-mark,
.trust-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--black);
  border-bottom: 4px solid var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.service-card p,
.trust-card p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.gallery-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 0, 21, 0.2), transparent 30%),
    linear-gradient(180deg, #111114, #09090b);
}

.gallery-section .eyebrow,
.gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-item {
  position: relative;
  height: 230px;
  padding: 0;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(6),
.gallery-item:nth-child(10) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease, opacity 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  opacity: 0.86;
  transform: scale(1.08);
}

.gallery-item:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-list span {
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-list a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus {
  color: var(--red);
  outline: none;
}

.map-wrap {
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  margin: 16px 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 215, 255, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
}

.offer-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 0, 21, 0.44), rgba(224, 0, 21, 0) 42%),
    linear-gradient(180deg, #111114, #050506);
}

.offer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.offer-wrap h2 {
  max-width: 720px;
}

.offer-wrap p {
  color: rgba(255, 255, 255, 0.8);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.offer-list li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.btn-offer {
  min-width: 280px;
  background: var(--white);
  color: var(--black);
}

.btn-offer:hover,
.btn-offer:focus {
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.16);
}

.sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(9, 9, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.sticky-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.sticky-cta a:first-child {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(980px, 100%);
  max-height: 82svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.site-footer {
  color: var(--white);
  text-align: center;
  background: var(--black);
}

.footer-inner {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
}

.footer-inner img {
  width: 112px;
  margin: 0 auto 18px;
  background: var(--white);
  border-radius: 8px;
}

.footer-inner p {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus {
  color: var(--cyan);
  outline: none;
}

.minipage-credit {
  margin: 26px 0 0;
  font-size: 0.86rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-8px, -4px, 0);
  }
  to {
    transform: scale(1.09) translate3d(10px, 6px, 0);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    opacity: 0.58;
    transform: translateX(-18px);
  }
  50% {
    opacity: 1;
    transform: translateX(18px);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 0, 21, 0.42);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(224, 0, 21, 0);
  }
}

@keyframes scrollDot {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(20px);
    opacity: 0.2;
  }
}

@media (max-width: 960px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-inner,
  .split,
  .contact-grid,
  .offer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
    width: min(420px, 100%);
  }

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

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

  .offer-wrap {
    padding: 26px;
  }

  .btn-offer {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 8px 12px 0;
  }

  .brand-float {
    left: 16px;
    width: 135px;
    transform: none;
  }

  .nav-shell {
    justify-content: flex-end;
    min-height: 58px;
    margin-top: 32px;
    padding: 8px;
  }

  .nav-links a {
    display: none;
  }

  .nav-call {
    min-width: 154px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    min-height: auto;
    padding: 66px 0 104px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .btn,
  .hero-actions {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .section,
  .section-band {
    padding: 62px 0;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main,
  .image-small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 420px;
    border: 0;
  }

  .image-small {
    margin-top: 12px;
  }

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

  .service-card,
  .trust-card {
    min-height: 0;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(10) {
    grid-column: auto;
    height: 265px;
  }

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

  .contact-form {
    padding: 20px;
  }

  .map-wrap {
    height: 280px;
  }

  .sticky-cta {
    display: grid;
  }

  .footer-inner {
    padding-bottom: 96px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .section-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav-call {
    min-width: 142px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
}

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