:root {
  --accent: #a855f7;
  --accent-light: #d8b4fe;
  --bg: #0a0e12;
  --bg-light: #10141a;
  --card: #131820;
  --border: #1f2937;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --spacing: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem;
}

/* Header & Hero */
header {
  margin-bottom: 1rem;
  text-align: center;
}

.header-content h1 {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 0.15rem 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.header-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.15rem 0 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.header-content p:first-of-type {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

/* Typography */
h2 {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0.3rem;
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  margin: 1.2rem 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
  margin: 0.75rem 0;
}

.thumb {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 3;
}

.thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-light);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.thumb:hover img {
  transform: scale(1.05);
}

.thumb .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--text);
  font-weight: 500;
  font-size: 0.8rem;
}

/* Pricing Section */
.pricing-section {
  margin: 1.2rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 0.75rem 0;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
}

.price-card h3 {
  margin-top: 0;
  color: var(--accent-light);
  font-size: 1.1rem;
}

.price-card .details {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

.price-card .amount {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0 0 0;
}

/* Contact Section */
.contact-section {
  margin: 1.2rem 0;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(255, 107, 107, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.contact-section h2 {
  margin-top: 0;
}

.contact-text {
  color: var(--text-muted);
  margin: 0.4rem 0 0.8rem;
  font-size: 0.9rem;
}

.contact-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #d02d3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.lightbox.open img {
  transform: scale(1);
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lightbox .close:hover {
  background: rgba(230, 57, 70, 0.5);
}

/* Modal (Terms of Service) */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: scale(0.8) translateY(-30px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal.open .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-content ul {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.5rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.modal-close:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .wrap {
    padding: 0.85rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

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

  .contact-buttons {
    flex-direction: column;
    gap: 0.4rem;
  }

  .btn {
    width: 100%;
  }

  .contact-section {
    padding: 0.85rem;
  }
}
