:root {
  --cream: #FFFBF5;
  --pink: #FFD6E8;
  --pink-deep: #FF6FA3;
  --red: #E63950;
  --blue: #3E92CC;
  --navy: #1B2A4A;
  --navy-soft: #4A5A7A;
  --white: #FFFFFF;
  --shadow: 0 8px 24px rgba(27, 42, 74, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg,
    #FFE3EF 0%,
    #FFF3F8 12%,
    #EAF4FC 30%,
    #FFF3F8 48%,
    #FDE7F1 64%,
    #EAF4FC 80%,
    #FFEAF3 100%);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin-bottom: 18px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; color: var(--navy-soft); }

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

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 17px; height: 17px; }

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.social-icons a:hover { transform: translateY(-3px); }
.social-icons svg { width: 20px; height: 20px; }

.social-icons .ic-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons .ic-facebook { background: #1877F2; }
.social-icons .ic-youtube { background: #FF0000; }
.social-icons .ic-etsy { background: #F1641D; }

.nav-social-slot {
  display: flex;
  flex: 1;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-social-slot { display: none; }
}

/* Social icons re-appear inside the mobile nav menu once the header row hides above.
   This breakpoint must match the .nav-toggle/.nav-links breakpoint below (900px) -
   otherwise there's a width range where the header icons are hidden but the hamburger
   menu doesn't exist yet, and the icons end up squeezed into the still-horizontal nav bar. */
.nav-social-mobile { display: none; }

@media (max-width: 900px) {
  .nav-social-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(27, 42, 74, 0.08);
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--red); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 50;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--navy);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(230, 57, 80, 0.3); }

.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-promo { background: var(--white); color: var(--red); border: 2px solid var(--red); }
.btn-promo:hover { background: var(--red); color: var(--white); }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---------- Hero balloons (signature element) ---------- */
.hero {
  padding: 72px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.balloon-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 40px 0 8px;
  flex-wrap: wrap;
}

.balloon {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bob 4.5s ease-in-out infinite;
  width: 120px;
}

.balloon:nth-child(2) { animation-delay: -0.7s; }
.balloon:nth-child(3) { animation-delay: -1.4s; }
.balloon:nth-child(4) { animation-delay: -2.1s; }
.balloon:nth-child(5) { animation-delay: -2.8s; }
.balloon:nth-child(6) { animation-delay: -3.5s; }
.balloon:nth-child(7) { animation-delay: -4.1s; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.icon-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.icon-badge svg, .icon-badge img { width: 40px; height: 40px; object-fit: contain; }

.icon-badge.icon-badge-sm { width: 52px; height: 52px; }
.icon-badge.icon-badge-sm svg, .icon-badge.icon-badge-sm img { width: 26px; height: 26px; }

.icon-badge-photo {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.required-star {
  color: var(--red);
  margin-left: 2px;
}

.icon-badge.c-pink { background: var(--pink); }
.icon-badge.c-pink-deep { background: var(--pink-deep); }
.icon-badge.c-red { background: var(--red); }
.icon-badge.c-red-deep { background: #C22A3E; }
.icon-badge.c-blue { background: var(--blue); }
.icon-badge.c-blue-light { background: #7EC3E8; }
.icon-badge.c-navy { background: var(--navy-soft); }

.balloon-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .balloon { animation: none; }
}

/* ---------- Cards / services grid ---------- */
.section { padding: 64px 0; }
.section-alt { background: rgba(255, 255, 255, 0.4); }

.services-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-section .card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
}

.grid-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 24px;
  margin-top: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: 100px;
}

.grid-4 .card { flex: 1 1 210px; max-width: 240px; }

@media (max-width: 560px) { .grid-4 .card { flex-basis: 100%; max-width: 320px; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  overflow: visible;
  border-top: 5px solid var(--card-accent, var(--red));
}

.card .icon-badge {
  margin-top: -52px;
  border: 4px solid var(--white);
}

.card .icon-badge.icon-badge-sm { margin-top: -44px; }

.card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 32px rgba(27, 42, 74, 0.18);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-accent, var(--red));
  opacity: 0.05;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

.card .price { font-family: 'JetBrains Mono', monospace; color: var(--red); font-weight: 600; }

/* ---------- Service page ---------- */
.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

@media (max-width: 800px) { .service-hero { grid-template-columns: 1fr; } }

.service-visual {
  aspect-ratio: 4/3.4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.booking-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 24px;
  text-align: left;
}

.field-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

label { font-weight: 600; font-size: 0.9rem; }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(27, 42, 74, 0.12);
  background: var(--cream);
  color: var(--navy);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* ---------- Floating cart ---------- */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 111, 163, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.cart-fab:hover { transform: scale(1.06); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--navy);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  box-shadow: -12px 0 32px rgba(27,42,74,0.18);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-panel.open { transform: translateX(0); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.35);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(27,42,74,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(27,42,74,0.15);
}

.cart-item-name { font-weight: 600; }
.cart-item-date { font-size: 0.85rem; color: var(--navy-soft); font-family: 'JetBrains Mono', monospace; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-empty {
  text-align: center;
  padding: 40px 16px;
  color: var(--navy-soft);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(27,42,74,0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.cart-footer .btn { width: 100%; }

/* ---------- Booking modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.45);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.modal-box h3 { margin-bottom: 16px; }

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.ok { color: #2E8B57; }
.form-status.err { color: var(--red); }

/* ---------- Testimonials marquee ---------- */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.testimonial-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  width: 300px;
  flex-shrink: 0;
}

.testimonial-stars { color: var(--red); letter-spacing: 2px; margin-bottom: 8px; }
.testimonial-quote { font-size: 0.95rem; margin-bottom: 12px; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-source { font-size: 0.8rem; color: var(--navy-soft); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
}

/* ---------- Our work (photo collage) ---------- */
.work-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 18px;
  padding: 20px 0 32px;
  max-width: 900px;
  margin: 0 auto;
}

.work-photo {
  background: var(--white);
  padding: 7px;
  box-shadow: var(--shadow);
  border-radius: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
}

.work-photo:hover {
  transform: rotate(0deg) scale(1.12) !important;
  box-shadow: 0 18px 30px rgba(27, 42, 74, 0.22);
  z-index: 5;
}

.work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.work-tile-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: var(--white);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.55rem;
  padding: 4px;
  border-radius: 14px;
}

@media (max-width: 640px) {
  .work-photo { width: 150px; height: 150px; }
}

/* ---------- Upsell chips (bouncy add-ons) ---------- */
.upsell-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.upsell-chip {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  animation: chipBounce 2.2s ease-in-out infinite;
  transition: transform 0.15s ease;
}

.upsell-chip:nth-child(2) { animation-delay: -1.1s; }

.upsell-chip:hover { animation-play-state: paused; transform: translateY(-3px) scale(1.03); }

.upsell-chip .upsell-old {
  text-decoration: line-through;
  color: var(--red);
  opacity: 0.55;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.upsell-chip .upsell-new {
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

@keyframes chipBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .upsell-chip { animation: none; }
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-links a { font-size: 0.85rem; color: var(--navy-soft); }
.footer-links a:hover { color: var(--red); }


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

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

/* ---------- Hero decorative doodles ---------- */
.doodle {
  position: absolute;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  animation: doodleFloat 5s ease-in-out infinite;
  will-change: transform;
}

.doodle:nth-of-type(2) { animation-delay: -1.5s; }
.doodle:nth-of-type(3) { animation-delay: -3s; }
.doodle:nth-of-type(4) { animation-delay: -2.2s; }

@keyframes doodleFloat {
  0%, 100% { transform: translateY(0) rotate(var(--doodle-rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--doodle-rot, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .doodle { animation: none; }
}

@media (max-width: 640px) {
  .doodle { width: 51px !important; }
  #ctaDoodleTL { top: 0 !important; left: 2% !important; }
}

/* ---------- About Me ---------- */
.about-me {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.about-me-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  background: var(--pink-deep);
}

.about-me-photo img, .about-me-photo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-me-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-me-photo-fallback svg { width: 70px; height: 70px; }

.about-me-text h2 { margin-bottom: 12px; }
.about-me-text p { margin-bottom: 12px; }
.about-me-text p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .about-me { flex-direction: column; text-align: center; gap: 20px; }
  .about-me-photo { width: 140px; height: 140px; }
}

.faq-item-note {
  background: var(--pink);
  border-left: 4px solid var(--red);
}
