:root {
  --bg: #f4f7f9;
  --surface: #ffffff;
  --text: #0f1720;
  --muted: #4d5b67;
  --brand: #0b6770;
  --brand-dark: #054049;
  --accent: #f97316;
  --line: #d7e0e6;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(5, 40, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem clamp(0.8rem, 2.5vw, 2.5rem);
  box-shadow: 0 8px 24px rgba(5, 40, 48, 0.08);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--brand-dark);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.brand-logo {
  width: clamp(44px, 5vw, 66px);
  height: clamp(44px, 5vw, 66px);
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(5, 64, 73, 0.18));
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.35rem);
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.005em;
  padding: 0.48rem 0.35rem;
  line-height: 1;
  min-height: 2.1rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.08rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 0.74rem 1.2rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.btn-sm {
  padding: 0.55rem 1.02rem;
  white-space: nowrap;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(6, 22, 28, 0.86) 0%, rgba(6, 22, 28, 0.58) 45%, rgba(6, 22, 28, 0.28) 78%, rgba(6, 22, 28, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 22, 28, 0.35), rgba(6, 22, 28, 0.35));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(244, 247, 249, 0), var(--bg));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: clamp(2.6rem, 8vh, 5.2rem);
  max-width: 760px;
  padding-inline: clamp(0.9rem, 1.8vw, 1.4rem);
  border-radius: 20px;
  backdrop-filter: blur(2px);
}

.hero-content h1,
.hero-content p,
.hero-content .kicker,
.hero-phone {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero-phone {
  margin-top: 1.1rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
  color: #d6f8fb;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  max-width: 17ch;
  margin: 0.7rem 0 1rem;
}

.hero-content > p {
  max-width: 65ch;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.section {
  padding: clamp(2.6rem, 6vw, 5rem) 0;
}

.section-muted {
  background: #eaf1f5;
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.section-head .kicker {
  color: var(--brand);
}

.section-head h2 {
  font-size: clamp(1.45rem, 3.3vw, 2.5rem);
  max-width: 24ch;
  margin: 0.45rem 0 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

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

.promo-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.promo-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.local-video {
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  border-radius: 12px;
  background: #111;
  object-fit: cover;
}

.video-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  text-align: center;
}

.quote-form {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: clamp(0.9rem, 2.5vw, 1.2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.94rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
  width: 100%;
}

.quote-form .full,
.quote-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-dark);
}

.site-footer {
  background: #0a1218;
  color: #c6d1db;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer a {
  color: #fff;
}


.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 18, 0.88);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  width: min(100%, 980px);
  max-height: 82vh;
  border-radius: 14px;
  object-fit: contain;
  background: #111;
}

.lightbox-caption {
  margin: 0.7rem 0 0;
  color: #e5ecf2;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0.6rem;
    right: 0.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.9rem 0.95rem;
    border-radius: 12px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.25;
    min-height: auto;
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: #f1f6f9;
  }

  .nav-links .nav-cta {
    display: inline-flex !important;
    margin-top: 0.3rem;
    width: 100%;
    padding: 0.88rem 1rem;
    font-size: 1.12rem;
    justify-content: center;
    color: #fff;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-bg {
    object-position: center 55%;
  }

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

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

  .local-video {
    width: 100%;
    max-width: 380px;
    max-height: 78vh;
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  .lightbox-image {
    max-height: 70vh;
  }

  .container {
    width: min(1160px, 100% - 1.2rem);
  }

  .site-header {
    padding: 0.7rem 0.6rem;
  }

  .hero-content {
    padding-block: 2.2rem;
    padding-inline: 0.7rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }
}
