/* ==========================================================================
   Clean Bee by Bia Matos — design system
   Palette, type and every signature detail derive from the logo:
   warm cream, thin gold framing, deep ink, sage leaves, dotted bee trail.
   ========================================================================== */

:root {
  --honey-cream: #FBF4E9;
  --honey-gold:  #C89A3C;
  --honey-light: #E8C87A;
  --ink:         #14110E;
  --sage:        #8B9A7A;
  --warm-white:  #FFFDF9;

  /* Derived tokens — gold darkened for text so it passes WCAG AA on cream */
  --honey-deep:  #7A5C1E;
  --ink-soft:    #4A4238;
  --sage-deep:   #5C6B4C;
  --line-gold:   rgba(200, 154, 60, .38);
  --line-gold-soft: rgba(200, 154, 60, .22);
  --shadow-honey: 0 10px 30px rgba(200, 154, 60, .16);
  --shadow-honey-lg: 0 16px 44px rgba(200, 154, 60, .26);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;
  --font-script: "Parisienne", cursive;

  /* Cards get one tucked corner — a nod to the drop of honey */
  --radius-card: 18px 18px 18px 5px;
  --radius-pill: 999px;

  --container: 1180px;
}

/* ---------- Reset (lite) ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
input, button, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--honey-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 580;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { max-width: 62ch; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  font-variation-settings: normal;
  letter-spacing: 0;
  color: var(--honey-deep);
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background-image: linear-gradient(to right, var(--honey-gold) 33%, transparent 0);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

a { color: var(--honey-deep); text-decoration: underline; text-decoration-style: dotted; text-decoration-color: var(--honey-gold); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

::selection { background: var(--honey-light); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--honey-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--honey-cream);
  padding: .8rem 1.4rem;
  border-radius: 0 0 12px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { margin-top: .8rem; }

/* Content sits above the bee-trail layer */
main > * { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .25s ease, background-color .18s ease, border-color .18s ease;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-primary { background: var(--honey-gold); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(200, 154, 60, .5); transform: translateY(-1px); color: var(--ink); }

.btn-sage { background: var(--sage); }
.btn-sage:hover { box-shadow: 0 8px 24px rgba(139, 154, 122, .45); transform: translateY(-1px); color: var(--ink); }

.btn-outline { border-color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--honey-cream); }

.btn-ghost { padding: .95rem .6rem; text-decoration: underline dotted var(--honey-gold); text-underline-offset: 3px; }
.btn-ghost:hover { color: var(--honey-deep); }

.btn-lg { padding: 1.15rem 2.2rem; font-size: 1.1rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 233, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-gold);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(20, 17, 14, .07); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .6rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  padding-block: .2rem;
}
/* The wordmark is the brand's original calligraphy, cropped straight from
   the logo file. multiply blends its cream background into the page. */
.brand-wordmark {
  height: 56px;
  width: auto;
  mix-blend-mode: multiply;
}
.brand-by {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--honey-deep);
  line-height: 1;
  display: block;
}

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--honey-gold); }

.lang-switch {
  display: flex;
  border: 1.5px solid var(--line-gold);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.lang-switch button {
  background: none;
  border: none;
  padding: .38rem .62rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.lang-switch button[aria-pressed="true"] { background: var(--honey-gold); color: var(--ink); }
.lang-switch button:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-gold);
  border-radius: 10px;
  padding: .5rem .6rem;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(4rem, 8vw, 6.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-block: 1rem 1.2rem; }
.hero h1 .script-accent { font-size: 1.06em; }
.hero .lead { margin-bottom: 1.8rem; }

.hero-logo {
  width: min(360px, 80%);
  height: auto;
  mix-blend-mode: multiply;
  margin-bottom: 1.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-note {
  margin-top: 1.4rem;
  font-size: .92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-note svg { width: 18px; height: 18px; color: var(--sage-deep); flex: none; }

/* Staggered entrance — only when JS is present and motion is allowed */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-in { opacity: 0; transform: translateY(18px); animation: heroIn .8s cubic-bezier(.2, .7, .3, 1) forwards; }
  .js .hero-in-1 { animation-delay: .05s; }
  .js .hero-in-2 { animation-delay: .18s; }
  .js .hero-in-3 { animation-delay: .32s; }
  .js .hero-in-4 { animation-delay: .48s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
}

/* ---------- Quote form card ---------- */
.quote-card {
  background: var(--warm-white);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-honey);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.quote-card h2, .quote-card h3 {
  font-size: 1.35rem;
  margin-bottom: .35rem;
}
.quote-card .quote-hint { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.quote-form .field-full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .3rem;
}
.field input, .field select {
  width: 100%;
  padding: .68rem .8rem;
  border: 1.5px solid rgba(20, 17, 14, .18);
  border-radius: 10px;
  background: var(--honey-cream);
  font-size: .98rem;
}
.field input:hover, .field select:hover { border-color: var(--honey-gold); }
.field input:focus-visible, .field select:focus-visible { outline-offset: 1px; }

.quote-form .btn-primary { width: 100%; margin-top: .3rem; }
.quote-alt { grid-column: 1 / -1; text-align: center; font-size: .92rem; color: var(--ink-soft); }

/* ---------- "We bring everything" band ---------- */
.band {
  background: var(--ink);
  color: var(--honey-cream);
  padding-block: clamp(2.2rem, 4vw, 3rem);
}
.band-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.band-icon { width: 54px; height: 54px; color: var(--honey-light); flex: none; }
.band h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--honey-light); margin-bottom: .3rem; }
.band p { color: rgba(251, 244, 233, .85); }
.band .btn { margin-left: auto; }
.band a.btn-primary:hover { color: var(--ink); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: var(--warm-white);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-honey-lg);
  border-color: var(--honey-gold);
  color: var(--ink);
}
.service-card .card-icon { width: 44px; height: 44px; color: var(--honey-deep); }
.service-card p { font-size: .95rem; color: var(--ink-soft); flex-grow: 1; }
.card-link {
  font-weight: 700;
  font-size: .92rem;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-card:hover .card-link { gap: .6rem; }
.card-link svg { width: 15px; height: 15px; transition: none; }
.card-link { transition: gap .2s ease; }

/* ---------- Photo quote ---------- */
.photo-quote { background: var(--warm-white); border-block: 1px solid var(--line-gold); }
.photo-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-block: 2.2rem;
}
.photo-step {
  position: relative;
  padding: 1.5rem 1.4rem 1.3rem;
  background: var(--honey-cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--line-gold-soft);
}
.photo-step-num {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "WONK" 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--honey-deep);
  width: 56px;
  height: 62px;
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 62'%3E%3Cpath d='M28 2 L52 16 L52 46 L28 60 L4 46 L4 16 Z' fill='none' stroke='%23C89A3C' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: .9rem;
}
.photo-step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.photo-step p { font-size: .95rem; color: var(--ink-soft); }
.photo-quote .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ba-item figcaption {
  margin-top: .6rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
}
.ba-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-honey);
  --pos: 50%;
}
.ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-frame .ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--warm-white);
  box-shadow: 0 0 0 1px rgba(20, 17, 14, .25);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--honey-gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314110E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7 L3 12 L8 17'/%3E%3Cpath d='M16 7 L21 12 L16 17'/%3E%3C/svg%3E") center / 20px no-repeat;
  box-shadow: 0 3px 10px rgba(20, 17, 14, .3);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.ba-frame:focus-within { outline: 3px solid var(--honey-deep); outline-offset: 3px; }
.ba-tag {
  position: absolute;
  top: .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(20, 17, 14, .72);
  color: var(--honey-cream);
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.ba-tag-before { left: .7rem; }
.ba-tag-after { right: .7rem; }

/* ---------- Why Clean Bee (the only honeycomb-textured section) ---------- */
.why {
  background-color: var(--honey-cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cg fill='none' stroke='%23C89A3C' stroke-width='1'%3E%3Cpath d='M56 1 L110 32 L110 96 L56 127 L2 96 L2 32 Z'/%3E%3Cpath d='M56 129 L110 160 L110 194 M56 129 L2 160 L2 194'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 112px 194px;
}
.why-veil { background: rgba(251, 244, 233, .94); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.why-item {
  background: var(--warm-white);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.4rem;
}
.why-icon {
  width: 52px;
  height: 58px;
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 58'%3E%3Cpath d='M26 2 L48 15 L48 43 L26 56 L4 43 L4 15 Z' fill='%23FBF4E9' stroke='%23C89A3C' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
  color: var(--ink);
}
.why-icon svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.why-item p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.how-step { position: relative; padding-top: .4rem; }
.how-num {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "WONK" 1;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--honey-gold);
  line-height: 1;
  margin-bottom: .6rem;
}
.how-step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.how-step p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Areas ---------- */
.areas { background: var(--warm-white); border-block: 1px solid var(--line-gold); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}
.area-link {
  display: block;
  text-align: center;
  padding: .85rem .6rem;
  background: var(--honey-cream);
  border: 1px solid var(--line-gold-soft);
  border-radius: 12px 12px 12px 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.area-link:hover {
  transform: translateY(-2px);
  border-color: var(--honey-gold);
  box-shadow: var(--shadow-honey);
  color: var(--ink);
}
.area-link .state { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; color: var(--honey-deep); }
.areas-note { margin-top: 1.4rem; font-size: .95rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line-gold);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem .2rem;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80, "WONK" 1;
  font-weight: 580;
  font-size: 1.12rem;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A5C1E' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5 v14 M5 12 h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--honey-deep); }
.faq-body { padding: 0 .2rem 1.3rem; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 1rem; }
.final-cta h2 .script-accent { font-size: 1.06em; }
.final-cta .lead { margin-inline: auto; margin-bottom: 2rem; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 244, 233, .85);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; }
.site-footer h3 {
  color: var(--honey-light);
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.footer-areas ul { grid-template-columns: 1fr 1fr; column-gap: 1.2rem; }
.site-footer a { color: rgba(251, 244, 233, .85); text-decoration-color: rgba(200, 154, 60, .5); }
.site-footer a:hover { color: var(--honey-light); }
.footer-contact li { display: flex; gap: .55rem; align-items: baseline; }
.footer-contact svg { width: 16px; height: 16px; color: var(--honey-gold); flex: none; align-self: center; }
.footer-bottom {
  border-top: 1px solid rgba(200, 154, 60, .25);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(251, 244, 233, .6);
}
.footer-bottom ul { list-style: none; padding: 0; display: flex; gap: 1.4rem; }

/* ---------- Floating quote bar ---------- */
.quote-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.quote-fab .btn {
  box-shadow: 0 10px 26px rgba(20, 17, 14, .22);
  padding: .85rem 1.4rem;
}

/* ---------- Bee trail (signature) ---------- */
.bee-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.bee-trail path.trail-line {
  fill: none;
  stroke: var(--honey-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1 9;
  opacity: .32;
}
/* Where the bee already passed, the path is "cleaned": a soft polished
   streak plus the dotted line at full strength, with sparkles left behind. */
.bee-trail .trail-wipe {
  fill: none;
  stroke: var(--warm-white);
  stroke-width: 26;
  stroke-linecap: round;
  opacity: .65;
}
.bee-trail .trail-done {
  fill: none;
  stroke: var(--honey-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1 9;
  opacity: .85;
}
.trail-spark {
  fill: var(--honey-gold);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.bee-trail .trail-bee { opacity: .95; }

/* ---------- Bee life: fluttering wings + cursor companion ---------- */
.cursor-bee {
  position: fixed;
  left: 0;
  top: 0;
  margin: -15px 0 0 -17px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform;
}
.cursor-bee.is-active { opacity: .95; }
.cursor-bee svg { display: block; overflow: visible; }
.cursor-dot {
  position: fixed;
  z-index: 59;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--honey-gold);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .bee-wing {
    transform-box: fill-box;
    transform-origin: 55% 95%;
    animation: wingFlap .3s ease-in-out infinite alternate;
  }
  .bee-wing-b { animation-duration: .26s; }
  @keyframes wingFlap {
    from { transform: rotate(-6deg); }
    to { transform: rotate(16deg); }
  }
  .trail-spark.is-on {
    animation: sparkIn .6s ease-out both, sparkTwinkle 2.8s ease-in-out .6s infinite;
  }
  @keyframes sparkIn {
    from { opacity: 0; transform: scale(.2); }
    to { opacity: .9; transform: scale(1); }
  }
  @keyframes sparkTwinkle {
    0%, 100% { opacity: .9; transform: scale(1); }
    50% { opacity: .5; transform: scale(.72); }
  }
  .cursor-bee.is-idle svg { animation: beeBob 1.7s ease-in-out infinite; }
  @keyframes beeBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .cursor-dot { animation: dotFade .9s ease-out forwards; }
  @keyframes dotFade {
    from { opacity: .55; transform: scale(1); }
    to { opacity: 0; transform: scale(.35); }
  }
}

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Keyframes, not transitions — so the reveal never hijacks the
     transition property that card hovers rely on. */
  .js .reveal { opacity: 0; }
  .js .reveal.is-visible { opacity: 1; animation: revealIn .7s cubic-bezier(.2, .7, .3, 1) both; }
  .js .reveal-2.is-visible { animation-delay: .1s; }
  .js .reveal-3.is-visible { animation-delay: .2s; }
  .js .reveal-4.is-visible { animation-delay: .3s; }
  @keyframes revealIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .bee-trail, .cursor-bee, .cursor-dot { display: none; }
}

/* ---------- Page hero (internal pages) ---------- */
.page-hero { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); margin-block: .8rem 1rem; }
.page-hero .lead { margin-bottom: 1.6rem; }
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs span[aria-current] { color: var(--honey-deep); font-weight: 700; }

.prose { max-width: 720px; display: grid; gap: 1rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.2rem; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .4rem; }
.prose li::marker { color: var(--honey-gold); }

.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; max-width: 640px; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; color: var(--sage-deep); flex: none; margin-top: .25rem; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .band .btn { margin-left: 0; }
}

@media (max-width: 768px) {
  .bee-trail, .cursor-bee, .cursor-dot { display: none; }

  .brand-wordmark { height: 42px; }
  .brand-by { font-size: .9rem; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line-gold);
    box-shadow: 0 18px 30px rgba(20, 17, 14, .1);
    padding: .5rem 1.25rem 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid rgba(200, 154, 60, .18); }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .photo-steps { grid-template-columns: 1fr; }

  /* Floating bar becomes a full-width docked bar on mobile */
  .quote-fab {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--line-gold);
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(20, 17, 14, .12);
  }
  .quote-fab .btn { flex: 1; border-radius: 12px; box-shadow: none; }
  .quote-fab .btn + .btn { margin-left: .6rem; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  .quote-form { grid-template-columns: 1fr; }
  .why-grid, .how-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(2.4rem, 11vw, 3rem); }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 1.6rem); }
  .btn { padding: .85rem 1.2rem; font-size: .95rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .brand-wordmark { height: 36px; }
}
