:root {
  --bg: #06090d;
  --surface: #0d141c;
  --surface-2: #111d28;
  --text: #e6eef7;
  --muted: #a8b5c5;
  --accent: #9bc7ff;
  --accent-strong: #5ea5ff;
  --line: #223449;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 500px at -10% -10%, rgba(94, 165, 255, 0.22), transparent 65%),
    radial-gradient(800px 450px at 115% 15%, rgba(55, 94, 144, 0.3), transparent 60%),
    linear-gradient(145deg, #030508 0%, #0a1118 50%, #030508 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 100%;
  margin: 0;
  padding: 0.85rem 2rem;
  background: rgba(7, 12, 17, 0.78);
  border: 1px solid rgba(155, 199, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  color: #04101f;
  background: linear-gradient(135deg, #d4e8ff, #7eb7ff);
}

.brand-text {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

main,
.footer {
  max-width: 100%;
  margin: 0;
  padding: 0 0.75rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1rem;
  width: 100vw;
  min-height: 100vh;
  padding: clamp(4.8rem, 8vw, 6.5rem) clamp(1rem, 3vw, 2.4rem) 1.5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(115deg, rgba(4, 8, 12, 0.72) 18%, rgba(4, 8, 12, 0.2) 58%, rgba(4, 8, 12, 0.58) 100%),
    url("/images/front-page-image.jpg");
  background-size: cover;
  background-position: center 38%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 8, 12, 0.2) 0%, rgba(4, 8, 12, 0.74) 85%);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-copy,
.hero-card,
.card,
.feature-box,
.gallery-item,
.quote,
.contact-form,
.cta > div {
  background: linear-gradient(180deg, rgba(10, 18, 25, 0.86), rgba(8, 13, 19, 0.9));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-copy {
  backdrop-filter: blur(2px);
  padding: 2rem 2rem 1.8rem;
}

.hero-card {
  backdrop-filter: blur(2px);
  padding: 1.7rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-top: 0.4rem;
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

.lead {
  margin-top: 1rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.btn {
  border-radius: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.72rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(135deg, #9bc7ff, #5ea5ff);
  color: #061120;
  box-shadow: 0 12px 24px rgba(94, 165, 255, 0.3);
}

.btn-outline,
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-badges {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-badges li {
  background: rgba(155, 199, 255, 0.08);
  border: 1px solid rgba(155, 199, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.81rem;
  color: #cee2f8;
}

.package-title {
  color: var(--text);
  font-weight: 700;
  margin: 0.45rem 0;
}

.hero-card ul,
.checklist {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.hero-card li,
.checklist li {
  margin-bottom: 0.45rem;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 2.6rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

.card {
  padding: 1.2rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.feature-box {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.feature-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 2.9rem);
  color: #e6f2ff;
  margin: 0.25rem 0;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.image-block {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background-image: linear-gradient(160deg, #0a2136, #3f6f9f);
}

.image-two {
  background-image: linear-gradient(160deg, #222a2f, #778087);
}

.image-three {
  background-image: linear-gradient(160deg, #181f1a, #536658);
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.quote {
  margin: 0;
  padding: 1.2rem;
  color: #cfdeee;
  line-height: 1.55;
}

.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.86rem;
  color: #99afc8;
}

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

.cta > div,
.contact-form {
  padding: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  font-size: 0.85rem;
  color: #c3d3e5;
  display: grid;
  gap: 0.4rem;
}

input,
textarea {
  width: 100%;
  background: rgba(9, 15, 22, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  color: var(--text);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(94, 165, 255, 0.25);
  border-color: var(--accent-strong);
}

.form-note {
  font-size: 0.78rem;
  margin: 0;
}

.footer {
  padding: 2.2rem 1rem 3rem;
  color: #8ea5bd;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  border-top: 1px solid rgba(143, 176, 212, 0.18);
  margin-top: 2rem;
}

.footer a {
  color: #b8d6f9;
}

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

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

.gallery-title {
  margin-top: 0.4rem;
}

.gallery-status {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 29, 40, 0.72);
  color: #d8e8f8;
  margin-bottom: 0.95rem;
}

.albums-list {
  display: grid;
  gap: 1rem;
}

.tile-grid {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.4rem;
}

.gallery-tile {
  padding: 0;
  border: 1px solid rgba(155, 199, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(7, 12, 17, 0.8);
  cursor: pointer;
}

.gallery-tile:hover {
  transform: translateY(-1px);
}

.album {
  background: linear-gradient(180deg, rgba(17, 29, 40, 0.72), rgba(11, 19, 26, 0.9));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.album-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.album-head p {
  margin: 0;
  font-size: 0.85rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.album-cover-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(155, 199, 255, 0.2);
  background: rgba(7, 12, 17, 0.8);
  margin-bottom: 0.8rem;
}

.album-cover {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.load-album-btn {
  min-width: 160px;
}

.gallery-photo-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(155, 199, 255, 0.2);
  background: rgba(7, 12, 17, 0.8);
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-error {
  margin: 0;
  padding: 1rem;
  color: #ffd1d1;
  border: 1px solid rgba(255, 120, 120, 0.35);
  border-radius: 12px;
  background: rgba(78, 19, 19, 0.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.86);
  backdrop-filter: blur(4px);
}

.lightbox-panel {
  position: relative;
  width: min(96vw, 1400px);
  max-height: 94vh;
  border: 1px solid rgba(155, 199, 255, 0.25);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 23, 31, 0.94), rgba(8, 13, 18, 0.96));
  padding: 0.8rem 0.8rem 0.6rem;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
}

.lightbox-main {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  background: #020406;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(155, 199, 255, 0.35);
  background: rgba(7, 12, 17, 0.9);
  color: #e7f0fb;
  border-radius: 10px;
  cursor: pointer;
}

.lightbox-close {
  top: 0.6rem;
  right: 0.6rem;
  width: 38px;
  height: 38px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 52px;
  font-size: 1.3rem;
}

.lightbox-nav.prev {
  left: 0.6rem;
}

.lightbox-nav.next {
  right: 0.6rem;
}

.lightbox-meta {
  color: #c7d9ee;
  font-size: 0.9rem;
  padding: 0 0.25rem;
}

.lightbox-strip {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem;
}

.lightbox-thumb {
  padding: 0;
  border: 1px solid rgba(155, 199, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
  background: #0a141d;
  min-width: 86px;
  width: 86px;
  height: 64px;
  flex: 0 0 auto;
  cursor: pointer;
}

.lightbox-thumb.active {
  border-color: #9bc7ff;
  box-shadow: 0 0 0 1px rgba(155, 199, 255, 0.4);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .hero,
  .services-grid,
  .split,
  .gallery-grid,
  .testimonials-grid,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .tile-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .hero {
    min-height: 100vh;
    padding: 4.3rem 1rem 1rem;
    border-radius: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    margin-top: 0;
    padding: 0.7rem 1rem;
  }

  main,
  .footer {
    padding: 0 0.4rem;
  }

  .hero-copy,
  .hero-card,
  .card,
  .feature-box,
  .quote,
  .cta > div,
  .contact-form {
    padding: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .lightbox-panel {
    width: 98vw;
    max-height: 96vh;
    padding: 0.5rem;
  }

  .lightbox-main {
    max-height: 62vh;
  }

  .lightbox-nav {
    width: 36px;
    height: 44px;
  }
}
