@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap');

:root {
  --bg: #07060b;
  --surface: #11101a;
  --text: #f6f3ff;
  --muted: #aaa4b8;
  --cyan: #43d9ff;
  --pink: #ff3cac;
  --orange: #ff8a3d;
  --purple: #8f4dff;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 78px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)); background: linear-gradient(to bottom, rgba(7,6,11,.95), rgba(7,6,11,.45), transparent);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: Orbitron, sans-serif; font-size: .92rem; letter-spacing: .04em; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; }
nav a { color: #ddd8e7; }
nav a:hover { color: var(--cyan); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--pink); border-radius: 999px; box-shadow: 0 0 22px rgba(255,60,172,.18); }
.menu-button { display: none; color: white; background: transparent; border: 1px solid var(--line); border-radius: 99px; padding: 8px 13px; }

.hero { min-height: 100svh; position: relative; display: grid; place-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background: url('/assets/lake-sunset.jpg') center center/cover no-repeat; transform: scale(1.03); animation: breathe 12s ease-in-out infinite alternate; }
@keyframes breathe { to { transform: scale(1.08); } }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 65% 40%, rgba(8,7,13,.15), rgba(7,6,11,.82) 58%, #07060b 96%), linear-gradient(90deg, rgba(7,6,11,.93), rgba(7,6,11,.2)); }
.grid-floor { position: absolute; left: -20%; right: -20%; bottom: -18%; height: 42%; opacity: .18; transform: perspective(360px) rotateX(62deg); transform-origin: bottom; background-image: linear-gradient(rgba(67,217,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,60,172,.8) 1px, transparent 1px); background-size: 55px 38px; mask-image: linear-gradient(to top, black, transparent); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 44px)); padding-top: 70px; }
.hero-logo { width: 190px; margin-bottom: 12px; filter: drop-shadow(0 0 24px rgba(255,60,172,.25)); }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .22em; color: var(--cyan); font-size: .72rem; font-weight: 700; }
h1, h2, h3 { font-family: Orbitron, sans-serif; line-height: 1.12; margin-top: 0; }
h1 { max-width: 860px; font-size: clamp(3rem, 8vw, 7.2rem); letter-spacing: -.045em; margin-bottom: 22px; }
h1 span { background: linear-gradient(90deg, var(--cyan), #a57bff, var(--pink), var(--orange)); -webkit-background-clip: text; color: transparent; }
.hero-copy { max-width: 650px; color: #d4cfdd; font-size: clamp(1rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; cursor: pointer; }
.primary { background: linear-gradient(90deg, var(--purple), var(--pink)); color: white; box-shadow: 0 0 28px rgba(255,60,172,.26); }
.primary:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(255,60,172,.4); }
.secondary { border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.3); backdrop-filter: blur(8px); }
.scroll-cue { position: absolute; z-index: 3; bottom: 22px; font-size: 1.5rem; color: var(--muted); }

.section { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); letter-spacing: -.04em; margin-bottom: 18px; }
.section-heading > p:last-child, .about-copy p, .contact-card > div > p:last-child { color: var(--muted); font-size: 1.05rem; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-card { position: relative; grid-column: span 4; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #15121d; cursor: zoom-in; }
.gallery-card.wide { grid-column: span 8; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,11,.86), transparent 55%); }
.gallery-card span { position: absolute; z-index: 2; left: 20px; bottom: 16px; font-family: Orbitron; font-size: .9rem; letter-spacing: .05em; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.1); }

.services { border-top: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-grid article { min-height: 260px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article:nth-child(2n) { border-right: 0; }
.service-grid span { color: var(--pink); font-family: Orbitron; font-size: .75rem; }
.service-grid h3 { font-size: 1.5rem; margin: 26px 0 12px; }
.service-grid p { color: var(--muted); }
.service-grid a, .text-link { color: var(--cyan); font-weight: 700; }

.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about-image { min-height: 650px; border-radius: 24px; overflow: hidden; box-shadow: -20px 25px 0 rgba(143,77,255,.11); }
.about-image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.about-copy p { margin-bottom: 20px; }

.contact { width: 100%; padding-left: max(22px, calc((100vw - var(--max)) / 2)); padding-right: max(22px, calc((100vw - var(--max)) / 2)); background: radial-gradient(circle at 15% 20%, rgba(143,77,255,.18), transparent 35%), radial-gradient(circle at 85% 80%, rgba(255,60,172,.16), transparent 35%), #0d0b13; }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(8,7,12,.68); box-shadow: 0 25px 80px rgba(0,0,0,.32); }
label { display: grid; gap: 7px; color: #d7d2df; font-size: .85rem; font-weight: 600; }
label:nth-of-type(3), label:nth-of-type(4), label:nth-of-type(5), form .button, form small { grid-column: 1 / -1; }
input, textarea, select { width: 100%; color: white; background: #15131d; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 13px; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(67,217,255,.1); }
textarea { resize: vertical; }
form small { color: var(--muted); }
code { color: var(--cyan); }

footer { width: min(var(--max), calc(100% - 44px)); margin: auto; min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .85rem; }
.footer-brand { color: white; }

.lightbox { width: min(1100px, 92vw); max-height: 92vh; border: 0; padding: 0; border-radius: 16px; background: #050407; box-shadow: 0 25px 120px black; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 92vh; object-fit: contain; }
.close-lightbox { position: fixed; top: 20px; right: 24px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: white; background: rgba(0,0,0,.6); font-size: 1.8rem; cursor: pointer; }

@media (max-width: 800px) {
  .site-header { height: 68px; padding-inline: 20px; background: rgba(7,6,11,.92); }
  .brand span { display: none; }
  .brand img { width: 42px; height: 42px; }
  .menu-button { display: block; }
  nav { position: absolute; left: 16px; right: 16px; top: 62px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(10,8,15,.98); }
  nav.open { display: flex; }
  nav a { padding: 13px; }
  .nav-cta { border-radius: 10px; text-align: center; }
  .hero-image { background-position: 58% 40%; }
  .hero-overlay { background: linear-gradient(to top, rgba(7,6,11,.96) 6%, rgba(7,6,11,.35), rgba(7,6,11,.72)); }
  .hero-logo { width: 140px; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .section { padding: 82px 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .gallery-card, .gallery-card.wide { grid-column: span 1; }
  .gallery-card.tall { grid-row: span 1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { border-right: 0; }
  .about, .contact-card { grid-template-columns: 1fr; }
  .about-image, .about-image img { min-height: 480px; }
  form { grid-template-columns: 1fr; padding: 22px; }
  label, label:nth-of-type(3), label:nth-of-type(4), label:nth-of-type(5), form .button, form small { grid-column: 1; }
  footer { flex-direction: column; align-items: flex-start; justify-content: center; padding: 36px 0; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .hero-actions .button { width: 100%; }
}


.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -22px 0 28px;
}
.filter {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
}
.filter:hover,
.filter.active {
  color: white;
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(67,217,255,.13);
}
.gallery-card.is-hidden { display: none; }
.lightbox {
  overflow: visible;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, .65);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow:hover {
  border-color: var(--cyan);
  background: rgba(0, 0, 0, .88);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  margin: 0;
  padding: 7px 13px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, .7);
  font-size: .85rem;
}

@media (max-width: 600px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}
