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

:root {
  --bg-main:    #2a0518;
  --bg-section: #370820;
  --bg-card:    #4a1030;
  --bg-card2:   #3d0c28;
  --pink-light: #5c1840;
  --pink-mid:   #e8799a;
  --pink-deep:  #ff9ab8;
  --gold:       #e0b84e;
  --gold-light: #f0d080;
  --white:      #ffffff;
  --text-dark:  #ffffff;
  --text-mid:   #f0b8d0;
  --text-light: #c090a8;
  --border:     rgba(224,184,78,0.2);
  --radius:     16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

/* === UTILITIES === */
.gold { color: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* === HEADER === */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: var(--bg-main);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

nav { display: flex; gap: 2rem; }
nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
nav a:not(.active):not(:hover) { color: rgba(255,255,255,0.7); }

/* === HERO (Home) === */
.hero {
  min-height: 70vh;
  background: linear-gradient(160deg, #1a0210 0%, var(--bg-main) 40%, #3d0c28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,184,78,0.08) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,154,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

/* === MONOGRAM === */
.monogram {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.monogram-svg {
  width: clamp(140px, 30vw, 220px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(224,184,78,0.35));
}

.hero-sub {
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(160deg, #1a0210 0%, var(--bg-main) 60%, #3d0c28 100%);
  text-align: center;
  padding: 5rem 5% 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero-sub {
  color: var(--text-mid);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* === GALLERY / CAROUSEL === */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-section);
  overflow: hidden;
}
.gallery-section .section-title { margin-bottom: 0.4rem; }

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 5%;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 300px;
  height: 380px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.carousel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201,168,76,0.25);
}
.carousel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(58,32,48,0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(42,5,24,0.8);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.carousel-btn.prev { left: 2%; }
.carousel-btn.next { right: 2%; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* === WHY US === */
.why-section {
  padding: 5rem 5%;
  background: var(--bg-section);
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(224,184,78,0.15); }
.why-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.why-card p { color: var(--text-mid); font-size: 0.92rem; }

/* === CTA === */
.cta-section {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(135deg, #1a0210 0%, #3d0c28 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.cta-section p { color: var(--text-mid); margin-bottom: 2rem; }

/* === ABOUT PAGE === */
.about-section {
  padding: 5rem 5%;
  background: var(--bg-main);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #5c1840, #8b1f55);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-signature { margin-top: 2rem; }
.signature-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
}

/* VALUES */
.values-section {
  padding: 5rem 5%;
  background: var(--bg-section);
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.value-item p { color: var(--text-mid); font-size: 0.92rem; }

/* === PRICING PAGE === */
.pricing-section {
  padding: 5rem 5%;
  background: var(--bg-main);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(224,184,78,0.2);
}
.price-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, #5c1840 0%, #4a1030 100%);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--white);
}
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.price-amount .gold { font-size: 1.5rem; vertical-align: super; }
.price-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex: 1;
}
.price-list li {
  color: var(--text-mid);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.price-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.6rem;
}
.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 2.5rem;
  font-style: italic;
}

/* ADD-ONS */
.addons-section {
  padding: 4rem 5%;
  background: var(--bg-section);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.addon-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  font-size: 0.92rem;
  color: var(--white);
}
.addon-icon { font-size: 0.8rem; }
.addon-price { margin-left: auto; font-weight: 500; }

/* === CONTACT FORM === */
.contact-section {
  padding: 5rem 5%;
  background: var(--bg-main);
  max-width: 800px;
  margin: 0 auto;
}
.contact-section .section-title { margin-bottom: 0.4rem; }

.contact-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.form-group label { color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--bg-card2);
}
.form-group textarea { resize: vertical; }

.btn-full { width: 100%; border: none; cursor: pointer; font-size: 0.95rem; }

.form-success {
  text-align: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--gold);
}

/* === FOOTER === */
footer {
  background: #130109;
  color: var(--text-light);
  text-align: center;
  padding: 3rem 5%;
  font-size: 0.85rem;
  line-height: 2;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
footer a { color: var(--gold-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* === GALLERY PAGE === */
.gallery-filter-section {
  padding: 2.5rem 5% 0;
  display: flex;
  justify-content: center;
  background: var(--bg-main);
}
.filter-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.gallery-grid-section { padding: 3rem 5% 5rem; background: var(--bg-main); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,168,76,0.22); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,32,48,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.gallery-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--white);
  font-size: 1.1rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,8,16,0.93);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }
.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(201,168,76,0.5);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  header { flex-direction: column; gap: 1rem; padding: 1rem 5%; }
  nav { gap: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-card { flex: 0 0 240px; height: 300px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  nav { gap: 0.8rem; }
  nav a { font-size: 0.78rem; }
  .logo-text { font-size: 1rem; }
}
