:root {
  --bg: #0b0d12;
  --bg-soft: #121723;
  --panel: rgba(18, 23, 35, 0.9);
  --panel-strong: #161c29;
  --text: #f5f7fb;
  --muted: #aab3c5;
  --accent: #d4a65a;
  --accent-soft: rgba(212, 166, 90, 0.16);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 166, 90, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(88, 123, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #090b10 0%, #0b0d12 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 11, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #16110a;
  background: linear-gradient(135deg, #f8e3b0, var(--accent));
  box-shadow: 0 12px 30px rgba(212, 166, 90, 0.25);
}

.brand-text {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #121212 !important;
  background: linear-gradient(135deg, #f5d59a, var(--accent));
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
}

.hero {
  padding: 84px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-copy p,
.section-heading p,
.about-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #120f08;
  background: linear-gradient(135deg, #f7ddb3, var(--accent));
  box-shadow: 0 16px 34px rgba(212, 166, 90, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div,
.service-card,
.testimonial-card,
.contact-card,
.floating-card,
.image-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 16px 14px;
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    radial-gradient(circle at 35% 20%, rgba(212, 166, 90, 0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(95, 126, 255, 0.18), transparent 24%);
  border-radius: 34px;
  filter: blur(6px);
}

.floating-card {
  position: relative;
  width: min(100%, 420px);
  padding: 32px;
  border-radius: 28px;
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.floating-card h2 {
  font-size: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f6d9a2;
  font-size: 0.82rem;
  font-weight: 800;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.card-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 84px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading {
  margin-bottom: 28px;
}

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

.service-card,
.testimonial-card {
  border-radius: 24px;
  padding: 26px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p,
.testimonial-card p {
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(212, 166, 90, 0.22), rgba(255, 255, 255, 0.04));
  color: #f8ddb3;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 500px;
}

.image-frame {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
}

.frame-one {
  top: 0;
  left: 0;
  width: 68%;
  height: 72%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.frame-two {
  right: 0;
  top: 15%;
  width: 54%;
  height: 48%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.frame-three {
  left: 18%;
  bottom: 0;
  width: 56%;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(135deg, #f7ddb3, var(--accent));
  color: #191102;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.gallery-thumb {
  display: block;
  aspect-ratio: 1 / 1.08;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover .gallery-thumb,
.gallery-item:focus-visible .gallery-thumb {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.portrait-a { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1200&q=80"); }
.wedding-a { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80"); }
.event-a { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1200&q=80"); }
.product-a { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1523755231516-e43fd2e8dca5?auto=format&fit=crop&w=1200&q=80"); }
.portrait-b { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1504593811423-6dd665756598?auto=format&fit=crop&w=1200&q=80"); }
.wedding-b { background-image: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1523438097201-512ae7d59d0b?auto=format&fit=crop&w=1200&q=80"); }

.gallery-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 0 2px;
}

.gallery-meta strong {
  font-size: 1rem;
}

.gallery-meta small {
  color: var(--muted);
}

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

.testimonial-card p {
  font-size: 1.04rem;
}

.testimonial-card footer {
  color: var(--accent);
  font-weight: 800;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(4, 6, 10, 0.88);
  backdrop-filter: blur(12px);
  z-index: 50;
  padding: 20px;
}

.lightbox.open {
  display: grid;
}

.lightbox-content {
  width: min(900px, 100%);
  background: #101521;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.lightbox-image {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background: #1d2434 center/cover;
  margin-bottom: 16px;
}

.lightbox-title {
  margin-bottom: 8px;
}

.lightbox-desc {
  color: var(--muted);
  margin-bottom: 0;
}

.lightbox-close {
  float: right;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

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

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

.hidden {
  display: none !important;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-card,
  .service-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

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

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .about-grid,
  .contact-card,
  .service-grid,
  .testimonial-grid,
  .gallery-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-stack {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  h1 {
    line-height: 1;
  }

  .hero-card {
    min-height: 360px;
  }

  .floating-card {
    padding: 24px;
  }

  .service-card,
  .testimonial-card,
  .contact-card {
    padding: 22px;
  }
}
