@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Lora:ital,wght@0,600;1,400&display=swap');

:root {
  --white:       #ffffff;
  --off-white:   #fdf8fb;
  --light-pink:  #fce8f2;
  --mid-pink:    #f0b8d4;
  --pink:        #c4456a;
  --pink-dark:   #9e3254;
  --pink-deep:   #7a1f3d;
  --charcoal:    #1e1e1e;
  --dark:        #2e1a24;
  --muted:       #7a5a68;
  --border:      #ecd4e2;
  --border-dark: #d4afc6;
}

body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }

body {
  font-family: 'Nunito', sans-serif;
  background: #ffffff;
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* HEADER */
header {
  background: var(--white);
  border-bottom: 2px solid var(--pink);
  position: sticky; top: 0; z-index: 100;
  flex-shrink: 0;
}
.header-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem; height: 72px;
  position: relative;
}
.header-inner nav.main-nav { grid-column: 2; }
.header-inner .header-cta { grid-column: 3; justify-self: end; }

.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img img {
  height: 38px;
  width: auto;
  display: block;
  margin-left: -0.5rem;
}

nav.main-nav { display: flex; align-items: center; gap: 0.25rem; }
nav.main-nav a {
  font-weight: 700; font-size: 0.92rem;
  color: var(--dark); text-decoration: none;
  padding: 0.5rem 1.1rem; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
nav.main-nav a:hover,
nav.main-nav a.active { background: var(--light-pink); color: var(--pink); }

.header-cta {
  background: var(--pink); color: var(--white);
  font-weight: 800; font-size: 0.88rem;
  text-decoration: none; padding: 0.55rem 1.3rem;
  border-radius: 6px; transition: background 0.15s;
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: var(--pink-dark); }

/* BUTTONS */
.btn {
  display: inline-block; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; padding: 0.8rem 1.75rem;
  border-radius: 8px; cursor: pointer; border: none;
  transition: all 0.18s;
}
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--pink); font-weight: 800; }
.btn-white:hover { background: var(--light-pink); }

/* TRUST BAR */
.trust-bar {
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; padding: 0.65rem 2rem; flex-wrap: wrap;
}
.trust-item {
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.93); white-space: nowrap;
}
.trust-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }

canvas.page-band-sparkles,
canvas.trust-bar-sparkles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}

.section-wrap { max-width: 1140px; margin: 0 auto; padding: 5rem 2rem; }

/* FOOTER */
footer { background: var(--dark); padding: 3rem 2rem 1.5rem; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  max-width: 1140px; margin: 1.25rem auto 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
}

/* BURGER / MOBILE NAV */
.burger {
  display: none; background: none; border: 1.5px solid var(--border);
  color: var(--dark); width: 36px; height: 36px;
  font-size: 1.1rem; cursor: pointer; border-radius: 6px;
  align-items: center; justify-content: center;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  position: absolute; top: 72px; left: 0; right: 0;
  z-index: 200; box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.mobile-nav a {
  font-weight: 700; color: var(--dark); text-decoration: none;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  text-align: center; transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--light-pink); color: var(--pink); }

[id] { scroll-margin-top: 80px; }

/* DESKTOP */
@media (min-width: 901px) {
  nav.main-nav, .header-cta { display: flex; }
  .burger { display: none; }
}

/* MOBILE */
@media (max-width: 900px) {
  nav.main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Header: logo centred, burger right */
  .header-inner {
    grid-template-columns: 36px 1fr 36px;
    padding: 0 1rem;
    height: 60px;
  }
  .logo-img {
    grid-column: 2;
    justify-self: center;
  }
  .logo-img img { height: 28px; margin-left: 0; }
  .burger { grid-column: 3; justify-self: end; }
}

@media (max-width: 640px) {
  .trust-bar { gap: 1rem; }
  .trust-dot { display: none; }
}
