/* ============================================================
   Components — reusable UI primitives
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85em 1.7em;
  border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--grad-coral);
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn--primary:hover { box-shadow: 0 20px 40px rgba(226, 128, 128, 0.45); }

.btn--outline {
  background: rgba(255,255,255,0.65);
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-light);
}
.btn--outline:hover { background: #fff; box-shadow: var(--shadow-sm); }

.btn--lav {
  background: var(--grad-lav);
  color: #fff;
  box-shadow: var(--shadow-lav);
}
.btn--lav:hover { box-shadow: 0 20px 40px rgba(150, 118, 176, 0.42); }

.btn--lav-outline {
  background: rgba(255,255,255,0.5);
  color: var(--lavender-deep);
  border: 1.5px solid var(--lavender-100);
}
.btn--lav-outline:hover { background: #fff; box-shadow: var(--shadow-sm); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.8);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.7em 1.3em; font-size: 0.85rem; }

/* ---------- Icon circle (services / process / social) ---------- */
.icon-circle {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-deep);
}
.icon-circle svg { width: 42%; height: 42%; }

.icon-circle--rose  { background: radial-gradient(circle at 35% 30%, #fce3e0, #f8d2ce); color: var(--rose-deep); }
.icon-circle--lav   { background: radial-gradient(circle at 35% 30%, #ece0f1, #ddc9e6); color: var(--lavender-deep); }
.icon-circle--peach { background: radial-gradient(circle at 35% 30%, #fbe6da, #f6d4c3); color: #c98a72; }

/* ---------- Round arrow / pill utilities ---------- */
.pill-arrow {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-deep);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  flex: none;
}
.pill-arrow svg { width: 15px; height: 15px; }

/* ---------- Icon button (nav) ---------- */
.icon-btn {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--ink-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn:hover { background: var(--rose-100); color: var(--rose-deep); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Avatars (social proof) ---------- */
.avatars { display: flex; align-items: center; }
.avatars img,
.avatars .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -12px;
  background: var(--rose-100);
}
.avatars img:first-child, .avatars .avatar:first-child { margin-left: 0; }

/* ---------- Newsletter field ---------- */
.field {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 5px 5px 5px 18px;
  box-shadow: var(--shadow-xs);
  border: 1px solid #f3e6df;
}
.field input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-2);
  min-width: 0;
}
.field input::placeholder { color: var(--text-light); }
.field button {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-coral);
  color: #fff;
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.field button:hover { transform: scale(1.06); }
.field button svg { width: 18px; height: 18px; }

/* ---------- Decorative blobs & botanicals ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.botanical {
  position: absolute;
  color: var(--rose-light);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.heart-doodle { color: var(--rose-light); display: inline-block; vertical-align: middle; }

/* ---------- Wavy section dividers ---------- */
.wave { display: block; width: 100%; height: auto; line-height: 0; position: relative; z-index: 1; }
.wave svg { display: block; width: 100%; height: 100%; }
