:root {
  --cream: #FFF8EF;
  --sun: #FFC93C;
  --coral: #FF7F5C;
  --sky: #5FB4D9;
  --leaf: #6BBF8B;
  --ink: #2E2A26;
  --muted: #6b645c;
  --radius: 20px;
  font-size: 16px;
}

* { box-sizing: border-box; }

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

h1, h2, h3, .logo {
  font-family: 'Baloo 2', cursive;
}

img { max-width: 100%; display: block; }

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

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--coral);
  margin: 0 0 8px;
}
.eyebrow.center { text-align: center; }

h2.center { text-align: center; max-width: 700px; margin: 0 auto 48px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,248,239,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(46,42,38,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: var(--ink);
}
.logo-star { color: var(--sun); font-size: 1.3rem; }
.logo-sub { color: var(--coral); }
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--coral); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,127,92,0.35);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-header {
  background: var(--sun);
  color: var(--ink);
  padding: 10px 20px;
}

/* Hero */
.hero {
  padding: 72px 0 40px;
  background: radial-gradient(circle at 80% 20%, rgba(255,201,60,0.25), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(95,180,217,0.2), transparent 55%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.hero-badges {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-art { display: flex; justify-content: center; }
.hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 30px 60px rgba(255,127,92,0.35);
}

/* About */
.about { padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; margin-top: 4px; }
.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat strong { display: block; font-size: 1.2rem; color: var(--coral); font-family: 'Baloo 2', cursive; }
.stat span { color: var(--muted); font-size: 0.9rem; }
.about-image {
  position: relative;
  height: 300px;
}
.polaroid {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.polaroid { top: 0; left: 40px; transform: rotate(-6deg); background: #FFF3D6; }
.polaroid-2 { top: 60px; left: 200px; transform: rotate(5deg); background: #E7F6EE; }
.polaroid-3 { top: 160px; left: 60px; transform: rotate(3deg); background: #E5F3FA; }

/* Services */
.services { padding: 80px 0; background: #fff; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; }

/* Day timeline */
.day { padding: 80px 0; }
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.timeline-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(46,42,38,0.06);
}
.timeline-item .time {
  display: block;
  font-family: 'Baloo 2', cursive;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-item p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Gallery */
.gallery { padding: 80px 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.g1 { background: #FFE3B3; }
.g2 { background: #C9E9FF; }
.g3 { background: #D9F2E1; }
.g4 { background: #FFD6CC; }
.g5 { background: #E4E1FF; }
.g6 { background: #FFF0B8; }
.gallery-note {
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
}

/* Testimonial */
.testimonial {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--sky), var(--leaf));
  color: #fff;
  text-align: center;
}
.testimonial blockquote {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial cite {
  display: block;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact */
.contact { padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-top: 4px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list strong { display: block; font-size: 0.95rem; }
.contact-list span { color: var(--muted); }
.contact-list a { color: var(--coral); font-weight: 700; }
.contact-map iframe {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.footer-inner div { font-family: 'Baloo 2', cursive; font-size: 1.2rem; margin-bottom: 8px; }
.footer-note { opacity: 0.6; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-art { order: -1; }
  .about-image { height: 220px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .btn-header { display: none; }
  .header-inner { flex-wrap: wrap; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(46,42,38,0.08);
  }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
