:root {
  --pink: #ff5da2;
  --purple: #7b5eea;
  --teal: #22c1c3;
  --yellow: #ffcb47;
  --ink: #2b2540;
  --ink-soft: #5b5470;
  --bg: #fffaf3;
  --bg-alt: #f3effe;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(43, 37, 64, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Baloo 2', sans-serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

a {
  color: var(--purple);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 37, 64, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 93, 162, 0.18), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(34, 193, 195, 0.18), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255, 203, 71, 0.2), transparent 45%);
}

.hero-inner {
  text-align: center;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.highlight {
  color: var(--pink);
}

.hero-sub {
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Buttons */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 93, 162, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

/* Sections */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 2rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-badges {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.about-photo-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.price-card-featured {
  border: 2px solid var(--pink);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}

.price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
  margin: 8px 0 20px;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--ink-soft);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card ul li::before {
  content: "✦ ";
  color: var(--teal);
}

/* Service area */

#service-map {
  height: 420px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.area-bounds {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.area-bounds li {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--ink-soft);
}

.area-bounds span {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  color: var(--purple);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Availability */

.availability {
  max-width: 420px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.availability h3 {
  text-align: center;
  margin-bottom: 16px;
}

.availability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: var(--ink-soft);
}

.availability-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(43, 37, 64, 0.12);
  padding-bottom: 8px;
}

.availability-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.availability-list span {
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.contact-details a {
  color: var(--ink);
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(43, 37, 64, 0.15);
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Footer */

.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Responsive */

@media (max-width: 820px) {
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }
}

@media (max-width: 680px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}
