/* ==========================================================
   Brooms, Bubbles and Beyond — site styles
   Palette pulled from the brand flyers (navy / teal / bubble
   blue) plus the signature purple from the ladies' aprons.
   ========================================================== */
:root {
  --navy: #0d2f5e;
  --navy-deep: #08213f;
  --teal: #1aa3c9;
  --teal-dark: #0e7fa3;
  --sky: #39c1e6;
  --bubble: #cdeefb;
  --mist: #eef8fc;
  --purple: #8a3fd1;
  --purple-dark: #6d2bb0;
  --white: #ffffff;
  --text: #1c2b3a;
  --muted: #5c6b7a;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(13, 47, 94, 0.14);
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Pacifico", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
.script { font-family: var(--font-script); font-weight: 400; }
.container { width: min(1140px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.15); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-accent { background: var(--purple); color: #fff; }
.btn-accent:hover { background: var(--purple-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(13,47,94,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.brand-logo { height: 68px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--navy); text-decoration: none; font-weight: 600; }
.nav a:not(.btn):hover { color: var(--teal); }
.nav-toggle {
  display: none; background: none; border: 0; padding: .4rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(57,193,230,.45), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(138,63,209,.35), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--teal-dark) 100%);
  padding: 3.5rem 0 6rem;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--bubble); margin: 0 0 1rem; }
.eyebrow .dba { text-transform: lowercase; opacity: .7; margin: 0 .3em; }
.hero h1 { display: flex; flex-direction: column; gap: .2em; margin-bottom: 1rem; }
.hero h1 .script { font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--sky); }
.hero h1 .bold { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
.lead { font-size: 1.1rem; max-width: 34rem; color: rgba(255,255,255,.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0; }
.hero-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-tags li { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: .35rem .9rem; border-radius: 999px; font-size: .9rem; font-weight: 600; }

.hero-art { display: flex; justify-content: center; }
.ladies {
  width: min(100%, 560px);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
  animation: float 5s ease-in-out infinite;
}
.ladies-sm { width: min(100%, 460px); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 3; }
.wave svg { width: 100%; height: 90px; }
.wave path { fill: var(--white); }

/* floating bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubbles span {
  position: absolute; bottom: -80px;
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(205,238,251,.35) 45%, rgba(57,193,230,.15) 70%, transparent 72%);
  border: 1px solid rgba(255,255,255,.35);
  animation: rise 14s linear infinite;
  opacity: 0;
}
.bubbles span:nth-child(1)  { left: 5%;  width: 22px; height: 22px; animation-duration: 11s; animation-delay: 0s; }
.bubbles span:nth-child(2)  { left: 14%; width: 48px; height: 48px; animation-duration: 16s; animation-delay: 2s; }
.bubbles span:nth-child(3)  { left: 23%; width: 30px; height: 30px; animation-duration: 13s; animation-delay: 5s; }
.bubbles span:nth-child(4)  { left: 34%; width: 18px; height: 18px; animation-duration: 10s; animation-delay: 1s; }
.bubbles span:nth-child(5)  { left: 45%; width: 56px; height: 56px; animation-duration: 18s; animation-delay: 4s; }
.bubbles span:nth-child(6)  { left: 55%; width: 26px; height: 26px; animation-duration: 12s; animation-delay: 7s; }
.bubbles span:nth-child(7)  { left: 63%; width: 36px; height: 36px; animation-duration: 15s; animation-delay: 3s; }
.bubbles span:nth-child(8)  { left: 72%; width: 20px; height: 20px; animation-duration: 11s; animation-delay: 6s; }
.bubbles span:nth-child(9)  { left: 80%; width: 44px; height: 44px; animation-duration: 17s; animation-delay: 1.5s; }
.bubbles span:nth-child(10) { left: 88%; width: 28px; height: 28px; animation-duration: 13s; animation-delay: 8s; }
.bubbles span:nth-child(11) { left: 94%; width: 16px; height: 16px; animation-duration: 9s;  animation-delay: 2.5s; }
.bubbles span:nth-child(12) { left: 50%; width: 34px; height: 34px; animation-duration: 14s; animation-delay: 9s; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .9; }
  50%  { transform: translateY(-50vh) translateX(20px); }
  90%  { opacity: .6; }
  100% { transform: translateY(-110vh) translateX(-10px); opacity: 0; }
}
.bubbles-light span { border-color: rgba(26,163,201,.35); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,1), rgba(205,238,251,.7) 45%, rgba(57,193,230,.25) 70%, transparent 72%); }

/* ---------- Tagline band ---------- */
.tagline-band { background: var(--mist); border-bottom: 1px solid #d9eef7; padding: .9rem 0; }
.tagline-band .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .6rem 1rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .85rem; color: var(--navy); }
.tagline-band i { color: var(--teal); font-style: normal; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; scroll-margin-top: 90px; }
.section-alt { background: var(--mist); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.section-head h2 .script { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow); border-top: 6px solid var(--teal);
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card-featured { border-top-color: var(--purple); }
.card-icon {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--teal)); color: #fff; margin-bottom: 1rem;
}
.card-featured .card-icon { background: linear-gradient(135deg, #b07ae8, var(--purple)); }
.card-icon svg { width: 30px; height: 30px; }
.card h3 { color: var(--navy); font-size: 1.25rem; font-weight: 800; }

.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 1.9rem; margin: .45rem 0; font-weight: 500; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: .05rem;
  width: 1.3rem; height: 1.3rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-size: .75rem; font-weight: 800;
}
.card-featured .checks li::before { background: var(--purple); }
.checks.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; margin: 1.25rem 0 1.75rem; }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.feature-icon {
  width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.9rem; color: var(--navy);
  background: radial-gradient(circle at 30% 30%, #fff, var(--bubble) 60%, #a9e2f7);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.7), 0 8px 18px rgba(26,163,201,.25);
}
.feature h3 { font-size: 1.05rem; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; font-weight: 800; }
.feature p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Airbnb */
.airbnb-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: center; }
.airbnb-art { display: flex; justify-content: center; }
.airbnb-copy .badge, .badge { display: inline-block; background: var(--purple); color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; margin: 0 0 1rem; }
.airbnb h2 .script { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--teal); }
.airbnb h2 .bold { font-size: clamp(1.8rem, 3.8vw, 2.6rem); font-weight: 800; color: var(--navy); }
.airbnb-copy > p:not(.badge) { color: var(--muted); font-size: 1.05rem; }

/* Banner */
.banner-strip { background: var(--navy); }
.banner-strip img { width: 100%; max-width: 1600px; margin: 0 auto; }

/* Contact */
.contact { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--mist), #dff3fb); }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact h2 { color: var(--navy); }
.contact h2 .script { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--teal); }
.contact-copy > p { color: var(--muted); font-size: 1.05rem; }
.phones { display: grid; gap: 1rem; margin-top: 1.5rem; }
.phone {
  display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--navy);
  background: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.phone:hover { transform: translateX(4px); }
.phone-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); font-size: 1.4rem; flex: none; }
.phone small { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; color: var(--muted); font-weight: 700; }
.phone strong { font-size: 1.5rem; font-weight: 800; }

.quote-form { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.quote-form h3 { color: var(--navy); font-size: 1.4rem; margin: 0; }
.quote-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .9rem; color: var(--navy); }
.quote-form input, .quote-form select, .quote-form textarea {
  font: inherit; padding: .75rem .9rem; border: 2px solid #d9eef7; border-radius: 12px; background: var(--mist); color: var(--text);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.form-note { margin: 0; font-size: .8rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 2.5rem 0 1.25rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-brand { margin: 0; }
.footer-brand .script { font-size: 1.8rem; color: var(--sky); }
.footer-inner p { margin: .25rem 0 0; font-size: .9rem; }
.footer-contact { display: flex; gap: 1.5rem; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.footer-contact a:hover { color: var(--sky); }
.copyright { text-align: center; font-size: .8rem; margin: 2rem 0 0; opacity: .6; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .features { grid-template-columns: 1fr 1fr; }
  .hero-inner, .airbnb-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
  .hero-copy { order: 2; text-align: center; }
  .hero-art { order: 1; }
  .hero h1 { align-items: center; }
  .hero-cta, .hero-tags { justify-content: center; }
  .lead { margin-inline: auto; }
  .airbnb-art { order: 2; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; box-shadow: 0 10px 20px rgba(13,47,94,.12);
  }
  .nav.open { display: flex; }
  .nav a { padding: .9rem 1.5rem; border-top: 1px solid #eef3f7; }
  .nav .btn { margin: .75rem 1.5rem 1rem; text-align: center; }
  .brand-logo { height: 54px; }
  .features { grid-template-columns: 1fr; }
  .checks.two-col { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
/* Visitors with "reduce motion" on still get the bubbles — they just hold still */
@media (prefers-reduced-motion: reduce) {
  .ladies { animation: none; }
  .bubbles span { animation: none; opacity: .7; bottom: auto; }
  .bubbles span:nth-child(odd)  { top: 18%; }
  .bubbles span:nth-child(even) { top: 62%; }
  .bubbles span:nth-child(3n)   { top: 40%; }
  .bubbles span:nth-child(5n)   { top: 80%; }
  html { scroll-behavior: auto; }
}
