:root {
  --gold: #c9a84c;
  --gold-light: #e8cc7e;
  --gold-dark: #8a6a20;
  --dark: #0c0803;
  --dark2: #13100a;
  --dark3: #1c1610;
  --dark4: #2a2218;
  --cream: #f5e9d0;
  --cream2: #d4c4a0;
  --muted: #7a6a50;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Jost', sans-serif;
  --font-accent: 'Cinzel', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-ui);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  background: linear-gradient(to bottom, rgba(12,8,3,0.98) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(12,8,3,0.97); border-bottom: 0.5px solid rgba(201,168,76,0.2); }

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--cream); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-book {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-book:hover { background: var(--gold); color: var(--dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.12);
  pointer-events: none;
  animation: pulseRing 6s ease-in-out infinite;
}
.hero-bg-circle:nth-child(1) { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-bg-circle:nth-child(2) { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1s; }
.hero-bg-circle:nth-child(3) { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2s; }

@keyframes pulseRing {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.15; }
}

.hero-ornament {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-ornament::before, .hero-ornament::after {
  content: '';
  width: 50px;
  height: 0.5px;
  background: var(--gold-dark);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.3rem;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-divider-line { flex: 1; max-width: 80px; height: 0.5px; background: var(--gold-dark); }
.hero-divider-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 1s both;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 0.5px solid var(--gold-dark);
  color: var(--cream2);
  padding: 0.9rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 400;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  display: block;
}
.hero-stat-sep { width: 0.5px; background: rgba(201,168,76,0.2); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION BASE ── */
section { position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 6rem 5%; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-rule {
  width: 50px;
  height: 0.5px;
  background: var(--gold-dark);
  margin-bottom: 2.5rem;
}

/* ── ABOUT ── */
.about { background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 550px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}
.about-image-frame {
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(201,168,76,0.3);
  transform: translate(14px, 14px);
  z-index: 2;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.about-image-placeholder svg { opacity: 0.2; }
.about-image-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-text { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; }

.about-text p { font-size: 0.92rem; line-height: 2; color: var(--cream2); margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.about-tag {
  border: 0.5px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

/* ── SERVICES ── */
.services { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  border: 0.5px solid rgba(201,168,76,0.12);
  margin-top: 3rem;
}
.service-card {
  background: var(--dark);
  padding: 2.5rem 1.8rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover { background: var(--dark3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: sepia(1) saturate(2) hue-rotate(5deg);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.service-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(201,168,76,0.08);
  font-weight: 600;
  line-height: 1;
}

/* ── GALLERY STRIP ── */
.gallery-strip { background: var(--dark2); overflow: hidden; }
.gallery-strip .section-inner { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 3/4;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 1.5rem; }

/* ── PROCESS ── */
.process { background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 0.5px;
  background: rgba(201,168,76,0.25);
}
.process-step { text-align: center; padding: 0 1.5rem; }
.process-num {
  width: 4rem;
  height: 4rem;
  border: 0.5px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--dark);
  position: relative;
  z-index: 1;
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.process-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark3);
  border: 0.5px solid rgba(201,168,76,0.15);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  font-weight: 600;
}
.testimonial-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.85rem; line-height: 1.9; color: var(--cream2); margin-bottom: 1.5rem; font-style: italic; font-family: var(--font-display); }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
  font-family: var(--font-ui);
}
.testimonial-name { font-size: 0.78rem; color: var(--cream); font-weight: 500; letter-spacing: 0.05em; }
.testimonial-role { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; }

/* ── PRICING ── */
.pricing { background: var(--dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  border: 0.5px solid rgba(201,168,76,0.2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(201,168,76,0.6); }
.pricing-card.featured {
  border-color: var(--gold);
  background: var(--dark3);
}
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  font-weight: 500;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-price span { font-size: 1.2rem; }
.pricing-sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 1.8rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.82rem;
  color: var(--cream2);
  padding: 0.55rem 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pricing-features li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

/* ── CONTACT ── */
.contact { background: var(--dark2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px;
  border: 0.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.9rem; color: var(--cream); }
.contact-info-value a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.contact-info-value a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea {
  background: var(--dark4);
  border: 0.5px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { min-height: 130px; resize: vertical; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #1a472a;
  border: 0.5px solid #25d366;
  color: #25d366;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  transition: background 0.3s;
}
.whatsapp-btn:hover { background: #25d326; color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 0.5px solid rgba(201,168,76,0.15);
  padding: 3rem 5%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--cream); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.9; max-width: 280px; }
.footer-heading { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 0.5px solid rgba(201,168,76,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.float-wa svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 300px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BANNER ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.7rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
  gap: 0;
}
.marquee-item {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 2.5rem;
  font-weight: 500;
  font-family: var(--font-ui);
}
.marquee-sep { color: var(--dark3); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
