/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #0a0a0a;
  --bg-card:  #141414;
  --bg-alt:   #111111;
  --gold:     #c8964e;
  --gold-bri: #e0b066;
  --gold-dim: #8a6638;
  --white:    #f5f5f5;
  --grey:     #888888;
  --grey-dim: #555555;
  --border:   #2a2a2a;
  --radius:   12px;
  --max:      1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.gold { color: var(--gold); }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
}

.logo-text {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
}

#menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

#menu a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

#menu a:hover { color: var(--gold); }

#menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

#menu-btn span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--bg) 70%);
}

#hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 700px;
}

.hero-tag {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 24px;
}

#hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  color: var(--grey);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-gold:hover {
  background: var(--gold-bri);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 78, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block { width: 100%; text-align: center; }

/* ===== SECTIONS ===== */
section {
  padding: 100px 24px;
  max-width: 100vw;
  overflow-x: hidden;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--grey);
  font-size: 1rem;
}

/* ===== PRICING ===== */
#pricing { background: var(--bg-alt); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}

.card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1a1510 0%, var(--bg-card) 100%);
}

.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

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

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--gold);
}

.price .rand {
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 0.8;
}

.card-desc {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.card ul {
  list-style: none;
  margin-bottom: 32px;
}

.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: #ccc;
  position: relative;
  padding-left: 24px;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== CONTACT ===== */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--gold); }
.contact-item svg { color: var(--gold); flex-shrink: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-dim); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form select option { background: var(--bg-card); }

.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 20px;
}

.form-status.success { color: var(--gold); }
.form-status.error { color: #e55; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

footer p:first-child {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
}

.footer-sub {
  color: var(--grey-dim);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ===== COLLAGE ===== */
#collage { background: var(--bg); }

.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
}

.collage-item.collage-tall {
  grid-row: span 2;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.collage-item:hover img {
  transform: scale(1.05);
}

/* Placeholder state when image is missing */
.collage-item.placeholder {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.collage-item.placeholder::after {
  content: '📷';
  font-size: 2rem;
  opacity: 0.3;
}

.collage-item.placeholder img {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #menu {
    position: fixed;
    top: 64px; right: 0;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s;
    border-radius: 0 0 0 12px;
  }

  #menu.open { transform: translateX(0); }
  #menu-btn { display: flex; }

  .collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  section {
    padding: 70px 16px;
  }
  #hero { min-height: 90vh; }

  .lightbox { padding: 20px; }
  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }
  .lightbox-nav {
    font-size: 28px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 14px 16px; }
  .logo-text { font-size: 13px; }
  section { padding: 60px 12px; }
  .collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .collage-item.collage-tall { grid-row: span 1; }
}
</content>
</invoke>