/* SKYBARD MASTER STYLESHEET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg1: #06090f;
  --bg2: #000000;
  --line: rgba(255, 255, 255, 0.10);
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.55);
  --accent: rgba(255, 140, 0, 0.75);
}

body {
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(255, 140, 0, 0.12), transparent 60%),
    radial-gradient(800px 450px at 16% 0%, rgba(0, 170, 255, 0.06), transparent 60%),
    linear-gradient(to bottom, var(--bg1), var(--bg2));
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fadeIn 0.9s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* NAV */

.site-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 24px;
  padding: 10px 22px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: 0.3s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* LOGO */

.logo-overlay {
  position: fixed;
  top: 26px;
  right: 38px;
  z-index: 12;
  animation: float 4.5s ease-in-out infinite;
}

.logo {
  width: 170px;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55));
}

.logo-overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 140, 0, 0.42) 0%, rgba(255, 90, 0, 0.22) 45%, transparent 75%);
  filter: blur(60px);
  z-index: -1;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* BRAND */

.brand-overlay {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 11;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  max-width: 520px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.brand-tagline {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* PAGE CONTENT */

.content {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 190px 32px 90px;
}

/* HERO */

.hero-copy {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.hero-trust {
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */

.dropbtn,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.dropbtn {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.dropbtn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-btn {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border: 1px solid var(--accent);
}

.contact-btn:hover {
  background: linear-gradient(45deg, #ff7b00, #ffb347);
  color: #111;
}

.hero-btn {
  min-width: 190px;
}

/* HOMEPAGE MEDIA */

.showcase {
  margin-bottom: 90px;
}

.hero-media {
  margin-bottom: 34px;
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.94);
}

.hero-media img:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1);
}

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.supporting-grid img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.94);
}

.supporting-grid img:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1);
}

/* SERVICES */

.services {
  max-width: 1180px;
  margin: 0 auto 86px;
}

.section-kicker {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.services-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.35);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 20px;
  color: rgba(255, 200, 120, 0.95);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* FINAL CTA */

.final-cta {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px 28px;
  text-align: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* GALLERY */

.page-shell {
  padding: 0 0 20px;
}

.masonry {
  column-count: 3;
  column-gap: 28px;
}

.masonry img {
  width: 100%;
  display: block;
  margin: 0 0 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  filter: brightness(0.95);
  transition: transform 0.45s ease, filter 0.45s ease;
  break-inside: avoid;
  cursor: pointer;
}

.masonry img:hover {
  transform: translateY(-4px);
  filter: brightness(1);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 999;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* CONTACT */

.contact-container {
  display: flex;
  justify-content: center;
  padding: 0 0 80px;
}

.form-card {
  max-width: 820px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 10px;
}

.form-sub {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.form-card textarea {
  resize: vertical;
  margin-top: 12px;
}

.submit-btn {
  margin-top: 14px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #ff7b00, #ffb347);
  color: #111;
}

.contact-note {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

/* TABLET / SMALL DESKTOP */

@media (max-width: 1100px) {
  .logo {
    width: 140px;
  }

  .brand-name {
    font-size: 36px;
  }

  .site-nav {
    gap: 18px;
    padding: 9px 18px;
  }

  .content {
    padding: 180px 24px 80px;
  }

  .hero-headline {
    font-size: 42px;
  }

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

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

  .masonry {
    column-count: 2;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .site-nav {
    top: 118px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    gap: 12px;
    border-radius: 12px;
    max-width: calc(100% - 24px);
    width: max-content;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .logo-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 12;
  }

  .logo {
    width: 84px;
  }

  .logo-overlay::before {
    width: 140px;
    height: 140px;
    filter: blur(32px);
  }

  .brand-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 104px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.35;
  }

  .content {
    padding: 235px 16px 60px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .hero-btn {
    min-width: 170px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

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

  .masonry {
    column-count: 1;
  }
}