* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefcf8;
  color: #1e1b1a;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  background: rgba(255, 252, 245, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f0e5d8;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c27e4a, #b45f2b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.logo-icon { font-size: 1.8rem; margin-right: 4px; background: none; color: #c27e4a; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #3a2c28;
  transition: 0.2s;
}
.nav-link:hover, .nav-link.active { color: #c27e4a; }
.contact-nav { background: #c27e4a10; padding: 0.4rem 1rem; border-radius: 40px; }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content { flex: 1.2; }
.hero-badge {
  background: #f3e9df;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.accent { color: #c27e4a; }
.hero-content p { color: #5a4a42; margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.btn-primary {
  background: #c27e4a;
  color: white;
  box-shadow: 0 4px 12px rgba(194,126,74,0.3);
}
.btn-primary:hover { background: #a76436; transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid #c27e4a;
  color: #c27e4a;
}
.btn-outline:hover { background: #c27e4a10; }
.hero-image { flex: 0.8; position: relative; min-height: 260px; }
.floating-card {
  background: white;
  padding: 1.5rem;
  border-radius: 30px;
  font-size: 2.5rem;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
  position: absolute;
  animation: float 4s ease-in-out infinite;
}
.floating-card:first-child { top: 10px; left: 0; }
.floating-card.delay { top: 80px; left: 100px; animation-delay: 1s; }
.floating-card.delay2 { top: 150px; left: 30px; animation-delay: 2s; }
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  background: #f3e9df;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

/* MASONRY LAYOUT (Pinterest-like) */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 28px -14px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;  /* keeps ratio, fills container naturally */
}
/* Responsive columns */
@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 550px) {
  .gallery-grid { column-count: 1; }
}

/* Pricing Page Styles */
.pricing-section { padding: 4rem 0; background: #ffffff; }
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}
.pricing-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid #f0e5d8;
  flex: 1;
  min-width: 260px;
  transition: 0.2s;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid #c27e4a;
  transform: scale(1.02);
  background: #fffcf9;
}
.card-badge {
  background: #e6d5c4;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.plan-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.price { font-size: 2.5rem; font-weight: 800; color: #c27e4a; margin: 1rem 0; }
.price span { font-size: 1rem; font-weight: 400; }
.plan-features { list-style: none; margin: 1.5rem 0; }
.plan-features li { margin: 0.6rem 0; display: flex; gap: 8px; align-items: center; }
.btn-card {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #c27e4a;
  color: white;
  padding: 0.7rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
.value-proposition {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background: #fef6ef;
  border-radius: 2rem;
  padding: 2rem;
  margin: 2rem 0;
}
.value-block { flex: 1; }
.value-list li { list-style: none; margin: 0.8rem 0; display: flex; gap: 12px; align-items: center; }
.perfect-grid { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.perfect-grid span { background: #fff; padding: 0.3rem 1rem; border-radius: 40px; }
.magic-note { margin-top: 1.5rem; background: #e9dbcf; padding: 0.8rem; border-radius: 60px; text-align: center; font-weight: 500; }
.cta-memories {
  text-align: center;
  margin-top: 3rem;
  background: linear-gradient(145deg, #f9efe6, #fff5ed);
  border-radius: 3rem;
  padding: 3rem 2rem;
}
.cta-glow h3 { font-size: 2rem; margin-bottom: 1rem; }
.cta-facebook { background: #1877f2; box-shadow: none; margin-top: 1rem; }
.cta-facebook:hover { background: #0e5bcb; }

/* info strip */
.info-strip { background: #c27e4a10; padding: 2rem 0; text-align: center; }
.info-card { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.btn-secondary { background: none; border: 1.5px solid #c27e4a; color: #c27e4a; }

/* Footer */
.footer {
  background: #1e1b1a;
  color: #ddd2ca;
  padding: 2rem 0;
  margin-top: 2rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-social a { color: #ddd2ca; margin-left: 1rem; font-size: 1.3rem; }
.copyright { text-align: center; margin-top: 2rem; font-size: 0.8rem; }

/* responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .pricing-grid { flex-direction: column; }
  .value-proposition { flex-direction: column; }
  .hero-image { display: none; }
  .container { padding: 0 1.2rem; }
}
.nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: white; padding: 1rem; gap: 1rem; border-bottom: 1px solid #eee; }