:root {
  --ink: #080c11;
  --surface: #0d1117;
  --surface-2: #121b26;
  --line: #2a3d55;
  --blue: #245ca6;
  --blue-bright: #2a6cd4;
  --text: #f5f7fa;
  --muted: #a8b5c5;
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #73a6f4;
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  background: white;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  padding: 0.35rem 0;
  background: var(--ink);
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
}

.topbar a {
  color: #79a7eb;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: 96px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: #73a6f4;
}

.nav-quote {
  padding: 0.68rem 1.1rem;
  background: var(--blue);
  color: white !important;
}

.nav-quote:hover {
  background: var(--blue-bright);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  padding: 0.55rem 0.7rem;
}

.mobile-nav {
  display: none;
  padding: 0.7rem 0 1rem;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 0.75rem 0.2rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #73a6f4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-home {
  min-height: 82vh;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 9, 14, 0.94) 0%, rgba(5, 9, 14, 0.77) 55%, rgba(5, 9, 14, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 5.5rem 0;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button-outline:hover {
  border-color: #73a6f4;
  background: rgba(42, 108, 212, 0.12);
}

.section {
  padding: 5.5rem 0;
}

#quick-quote,
#quote-form {
  scroll-margin-top: 120px;
}

.section-alt {
  background: var(--surface);
}

.section-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
}

.photo-cards,
.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.photo-card:hover img {
  transform: scale(1.03);
}

.photo-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 4rem 1.4rem 1.4rem;
  background: linear-gradient(transparent, rgba(5, 9, 14, 0.95));
}

.photo-card-content h3 {
  margin-bottom: 0.4rem;
}

.photo-card-content p {
  margin: 0;
  color: #d3dbe5;
  font-size: 0.9rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin: 2rem 0 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  list-style: none;
}

.service-list li::before,
.check-list li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: #73a6f4;
  font-weight: 900;
}

.service-list li {
  color: var(--muted);
  font-size: 0.9rem;
}

.card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: var(--ink);
}

.card-number {
  display: block;
  margin-bottom: 1.4rem;
  color: rgba(115, 166, 244, 0.34);
  font-family: Rockwell, Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.card p,
.card li {
  color: var(--muted);
}

.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 0.45rem 0;
  font-size: 0.9rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.city {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #dbe3ed;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.page-hero {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 30%, rgba(42, 108, 212, 0.18), transparent 35%), var(--ink);
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.featured-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.featured-service:nth-child(even) .featured-image {
  order: 2;
}

.featured-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.gallery-item {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--surface-2);
}

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

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

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-label {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(5, 9, 14, 0.9));
  color: white;
  font-weight: 800;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 3.5rem 4rem;
  background: rgba(3, 6, 10, 0.96);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(8, 12, 17, 0.9);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  padding: 0.65rem 0.8rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  padding: 0.75rem 0.9rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-count {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-strip {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #73a6f4;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item span,
.contact-item a {
  color: #dbe3ed;
  font-size: 0.88rem;
  text-decoration: none;
}

.form-card {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.optional {
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ink);
  color: white;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #73a6f4;
  outline: 2px solid rgba(115, 166, 244, 0.28);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.form-status:empty {
  display: none;
}

.form-status.success {
  border-color: #3d9064;
  color: #b5efca;
}

.form-status.error {
  border-color: #bb5252;
  color: #ffb8b8;
}

.privacy-copy {
  max-width: 780px;
}

.privacy-copy section {
  margin: 2.2rem 0;
}

.privacy-copy h2 {
  font-size: 1.75rem;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
}

.cta-band {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-row h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-row p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
}

.footer-logo {
  width: 110px;
  height: 72px;
  object-fit: contain;
}

.footer-copy {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-heading {
  color: #73a6f4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #73a6f4;
}

.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid #1b2938;
  color: #77879b;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .featured-service:nth-child(even) .featured-image {
    order: initial;
  }

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

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

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .brand img {
    width: 82px;
    height: 50px;
  }

  .hero,
  .hero-home {
    min-height: 72vh;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .section {
    padding: 4rem 0;
  }

  .photo-cards,
  .service-grid,
  .value-grid,
  .gallery-grid,
  .city-grid,
  .contact-items,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item {
    min-height: 290px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .cta-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 3.5rem 2.7rem;
  }

  .lightbox-prev {
    left: 0.25rem;
  }

  .lightbox-next {
    right: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
