:root {
  --red: #d7192f;
  --red-dark: #9f1021;
  --blue: #0f4c9c;
  --blue-dark: #071b3a;
  --ink: #101522;
  --muted: #647084;
  --line: #dce4ef;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --charcoal: #0b0e14;
  --shadow: 0 22px 70px rgba(7, 27, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(7, 27, 58, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(7, 27, 58, 0.94);
}

.brand img {
  width: 170px;
  display: block;
}

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

.main-nav a {
  padding: 10px 14px;
  color: #f5f8fc;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

.main-nav .nav-cta {
  margin-left: 8px;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(215, 25, 47, 0.28);
}


.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 7vw, 90px) 72px;
  color: #fff;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.62) 48%, rgba(215, 25, 47, 0.22)),
    linear-gradient(0deg, rgba(7, 27, 58, 0.96), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
}

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

.hero .eyebrow {
  color: #ff5b70;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 850;
}

.hero-copy {
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 34px rgba(215, 25, 47, 0.28);
}

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

.button-secondary.dark {
  color: var(--blue-dark);
  border-color: var(--line);
}

.work .button-secondary.dark {
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  white-space: nowrap;
  box-shadow: 0 18px 34px rgba(215, 25, 47, 0.28);
}

.work .button-secondary.dark:hover {
  background: #ef263f;
  border-color: #ef263f;
}

.button-small {
  min-height: 42px;
  margin-top: 12px;
  color: #fff;
  background: var(--blue);
  font-size: 0.92rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(760px, 100%);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats span {
  padding: 18px;
  background: rgba(7, 27, 58, 0.32);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.intro {
  background:
    linear-gradient(135deg, rgba(15, 76, 156, 0.08), transparent 36%),
    var(--soft);
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 76px);
  align-items: center;
}

.intro-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.split {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 48px rgba(7, 27, 58, 0.08);
}

.service-card-reverse img {
  order: 2;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: 6px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.work {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 25, 47, 0.22), transparent 28%),
    linear-gradient(315deg, rgba(15, 76, 156, 0.36), transparent 40%),
    var(--charcoal);
}

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

.work .eyebrow {
  color: #ff5b70;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #14213d;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.12);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.reviews {
  background: var(--soft);
}

.review-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-frame iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  height: 980px;
  overflow: auto;
}

.contact {
  background:
    linear-gradient(135deg, rgba(215, 25, 47, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(15, 76, 156, 0.1), transparent 35%),
    #fff;
}

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

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-card,
.hours {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 27, 58, 0.08);
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 18px;
  text-decoration: none;
}

.contact-card span,
.hours span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.hours {
  padding: 22px;
}

.hours h3 {
  margin-bottom: 16px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.socials {
  margin-top: 24px;
}

.socials a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.map-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: 0;
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.24);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid img {
  width: 130px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(7, 12, 22, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  width: min(960px, 100%);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: min(390px, calc(100vw - 32px));
  font-family: inherit;
}

.chat-launcher {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.28);
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
}

.chat-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  font-size: 0.88rem;
  font-weight: 900;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: block;
}

.chat-panel-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.chat-panel-header small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.chat-panel-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-message {
  margin: 18px 18px 0;
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
}

.chat-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.chat-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid #cdd7e5;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.chat-form input:focus,
.chat-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(15, 76, 156, 0.14);
}

.chat-disclaimer {
  margin: -6px 18px 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.chat-result {
  padding: 0 18px 18px;
}

.chat-result a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 880px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 27, 58, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .hero-stats,
  .intro-grid,
  .contact-grid,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card-reverse img {
    order: 0;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 16px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card iframe {
    height: 360px;
  }

  .review-frame iframe {
    min-height: 820px;
    height: 820px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-panel {
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .hours p {
    display: grid;
    gap: 2px;
  }
}
