:root {
  --navy: #0b1f33;
  --blue: #124766;
  --green: #1d6b61;
  --mint: #dcefe9;
  --ink: #13202a;
  --muted: #5b6d77;
  --line: #d7e2e3;
  --paper: #f7fbfa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 250, 0.94);
  border-bottom: 1px solid rgba(215, 226, 227, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  color: var(--navy);
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.88), rgba(18, 71, 102, 0.58), rgba(11, 31, 51, 0.08)),
    url("/assets/photos/photo-01.webp") center / cover;
  color: var(--white);
}

.hero__inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--mint);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__summary {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  background: #0f7a66;
  color: var(--white);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--navy);
}

.facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: -38px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact {
  min-height: 104px;
  padding: 18px;
  background: var(--white);
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.fact span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.section--tight {
  padding-top: 46px;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
}

.bullets {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  padding-left: 20px;
  position: relative;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.specs {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  background: var(--white);
}

.spec span {
  color: var(--muted);
}

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

.gallery button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--line);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

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

.gallery button:hover img {
  transform: scale(1.035);
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.map {
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--line);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact {
  background: var(--navy);
  color: var(--white);
}

.contact .section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 34px;
  align-items: center;
}

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

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 14px;
  background: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  padding: 22px;
  background: rgba(7, 19, 31, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .fact:last-child {
    grid-column: 1 / -1;
  }

  .section__head,
  .detail-grid,
  .location,
  .contact .section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .topbar {
    padding: 12px 18px;
  }

  .hero {
    min-height: 680px;
  }

  .hero__inner {
    padding-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  .fact {
    min-height: 94px;
    padding: 15px;
  }

  .section {
    padding: 54px 0;
  }

  .panel {
    padding: 22px;
  }
}
