:root {
  --blush: #f9e4e1;
  --rose: #e8a0a3;
  --deep-rose: #c56b72;
  --gold: #c9a96e;
  --cream: #fdfaf6;
  --charcoal: #2e2e2e;
  --slate: #4a4a4a;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.06);
  --shadow-lift: 0 18px 35px rgba(0,0,0,0.08);
  --radius-lg: 28px;
  --radius-md: 16px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.3px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: var(--deep-rose);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(197,107,114,0.25);
}

.btn:hover {
  background: #b54f58;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(197,107,114,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--deep-rose);
  border: 2px solid var(--deep-rose);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--deep-rose);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--deep-rose);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-rose);
  transition: width var(--transition);
}

nav a:hover {
  color: var(--deep-rose);
}

nav a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #fdf3f4;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 85vh;
  background: linear-gradient(135deg, #fdf6f0 0%, #f8e8e6 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.hero-decor {
  position: absolute;
  right: -10%;
  top: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,163,0.2) 0%, rgba(253,250,246,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.services-section,
.why-section,
.gallery-section,
.pricing-section,
.map-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.section-subtitle {
  text-align: center;
  color: var(--slate);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--deep-rose);
  border-radius: 0 0 8px 8px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--deep-rose);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.why-section {
  background: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
  margin: 50px 0 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-item p {
  color: #555;
}

.testimonial-section {
  background: #f9f4f0;
  padding: 80px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
}

.testimonial-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.testimonial-card {
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.stars {
  color: #d4a853;
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f0e4e7;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.pricing-section {
  background: #fff5f4;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 6px solid var(--deep-rose);
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep-rose);
  margin: 16px 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.address-line {
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
}

.cta-banner {
  background: var(--deep-rose);
  color: white;
  text-align: center;
  padding: 50px 20px;
  border-radius: 28px;
  margin: 40px 20px;
}

.cta-banner h2 {
  font-size: 2.4rem;
}

.cta-banner p {
  margin-bottom: 28px;
}

.cta-btn {
  background: white;
  color: var(--deep-rose);
}

footer {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 70px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-col a {
  display: block;
  color: #b0b0b0;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--rose);
}

.footer-address {
  margin-bottom: 10px;
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 24px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(30,30,30,0.95);
  color: #eee;
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-btn {
  background: var(--deep-rose);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-dialog {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.success-dialog {
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }
  nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}