/* beebella — boutique & playful aesthetic
   Warm peach/blush palette · rounded everything · hand-drawn accents
*/

/* ============ Hero full-width landscape slider ============ */
.hero-fullwidth {
  position: relative;
  width: 100%;
  margin-top: 6rem; /* clears the floating nav */
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-fullwidth { margin-top: 6.5rem; margin-bottom: 2rem; }
}

.hero-slider-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--peach-soft);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
}

/* Image area — keeps its own aspect ratio, separate from the card */
.hero-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;     /* mobile: tallish */
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-image-area { aspect-ratio: 16 / 8; }
}
@media (min-width: 1024px) {
  .hero-image-area { aspect-ratio: 16 / 7; }
}
@media (min-width: 1280px) {
  .hero-image-area { aspect-ratio: 16 / 7.5; max-height: 620px; }
}

.hero-slider-panel .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slider-panel .slide.active { opacity: 1; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}
.slider-dots button {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.slider-dots button.active {
  background: var(--milk);
  width: 38px;
}

/* ----- Overlay wrapper ----- */
.hero-overlay-wrap {
  pointer-events: none;
  z-index: 3;
}
.hero-overlay-wrap > * { pointer-events: auto; }

/* ----- The frosted text card ----- */
.hero-overlay-card {
  background: var(--peach);
  border: 0;
  border-radius: 0;
  padding: 1.5rem 1.5rem;
  box-shadow: none;
}

/* Keep hero buttons side by side, even on narrow screens */
.hero-btn-row { flex-wrap: nowrap; }
.hero-btn-row .btn-pill,
.hero-btn-row .btn-pill-outline {
  flex: 0 1 auto;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-btn-row .btn-pill,
  .hero-btn-row .btn-pill-outline {
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }
}

/* ----- Inner two-column layout for the card on desktop ----- */
.hero-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-overlay-left, .hero-overlay-right { min-width: 0; }

/* ----- Caption card sits below the image, inside the same container ----- */
.hero-overlay-wrap {
  position: static;        /* flows under the image, both inside the panel */
  width: 100%;
}
.hero-overlay-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.5rem;
  border-radius: 0;        /* container radius handles outer rounding */
  border: 0;
  box-shadow: none;
}
.hero-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}
.hero-overlay-left, .hero-overlay-right {
  min-width: 0;
  flex: none;
  max-width: none;
}

/* Tighten on desktop */
@media (min-width: 1024px) {
  .hero-overlay-card { padding: 1.5rem 2.25rem; }
  .hero-overlay-left .hero-display {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    line-height: 1.05;
  }
  .hero-overlay-left .script { font-size: 1.25rem; margin-bottom: 0.25rem; }
  .hero-overlay-card .btn-pill,
  .hero-overlay-card .btn-pill-outline { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
}
@media (min-width: 1280px) {
  .hero-overlay-card { padding: 1.75rem 3rem; }
  .hero-overlay-left .hero-display { font-size: clamp(2rem, 2.4vw, 2.8rem); }
}


:root {
  --peach: #fde4d3;
  --peach-soft: #fff1e3;
  --blush: #f9c9b8;
  --blush-deep: #e8a892;
  --rose: #f3a5a5;
  --honey: #f0bc78;
  --honey-soft: #f8d8a8;
  --cream: #fff8ef;
  --milk: #fffcf6;
  --terracotta: #c87966;
  --plum: #5a3a47;
  --ink: #2b1d22;
  --soft-ink: #4a3640;
  --muted: #8c7681;
  --leaf: #a8b89e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  background: var(--milk);
  color: var(--soft-ink);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--terracotta); }

.script {
  font-family: 'Caveat', cursive;
  color: var(--terracotta);
  font-weight: 500;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '✿';
  font-size: 0.95rem;
}

/* Color utilities */
.bg-peach { background: var(--peach); }
.bg-peach-soft { background: var(--peach-soft); }
.bg-blush { background: var(--blush); }
.bg-cream { background: var(--cream); }
.bg-milk { background: var(--milk); }
.bg-honey-soft { background: var(--honey-soft); }
.bg-plum { background: var(--plum); }
.bg-ink { background: var(--ink); }
.text-terracotta { color: var(--terracotta); }
.text-plum { color: var(--plum); }
.text-ink { color: var(--ink); }
.text-muted-soft { color: var(--muted); }
.text-leaf { color: var(--leaf); }

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  background: var(--ink);
  color: var(--milk);
  border: none;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.btn-pill:hover {
  background: var(--terracotta);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px -10px rgba(200, 121, 102, 0.45);
}
.btn-pill::after {
  content: '→';
  transition: transform 0.3s ease;
}
.btn-pill:hover::after { transform: translateX(4px) rotate(-12deg); }

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-pill-outline:hover {
  background: var(--ink);
  color: var(--milk);
  transform: translateY(-2px);
}

.btn-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  background: var(--milk);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-pill-light:hover {
  background: var(--peach);
  transform: translateY(-2px) scale(1.02);
}

.tag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--peach);
  border-radius: 999px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tag-link:hover {
  background: var(--peach);
  color: var(--ink);
  transform: translateY(-1px);
}
.tag-link::after { content: '→'; transition: transform 0.3s ease; }
.tag-link:hover::after { transform: translateX(3px); }

/* Navbar */
.navbar {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 2.5rem);
  max-width: 1180px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(232, 168, 146, 0.25);
  padding: 0.6rem 0.7rem 0.6rem 1.5rem;
  box-shadow: 0 6px 24px -10px rgba(90, 58, 71, 0.18);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 14px 36px -16px rgba(90, 58, 71, 0.25);
}

.brand {
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.brand::before {
  content: '✿';
  font-family: serif;
  font-size: 1.1rem;
  color: var(--honey);
  transform: rotate(-12deg);
  display: inline-block;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--soft-ink);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-link:hover { background: var(--peach-soft); color: var(--terracotta); }
.nav-link.active { background: var(--peach); color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  background: var(--ink);
  color: var(--milk);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-cta:hover { background: var(--terracotta); transform: scale(1.04); }

.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s;
  }
  .nav-toggle span:nth-child(1) { width: 100%; }
  .nav-toggle span:nth-child(2) { width: 70%; align-self: flex-end; }
  .nav-toggle span:nth-child(3) { width: 100%; }
}

/* Mobile menu */
@media (max-width: 900px) {
  .nav-links-wrap {
    display: flex !important;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    background: var(--milk);
    flex-direction: column !important;
    padding: 1rem;
    gap: 0.35rem !important;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(90, 58, 71, 0.25);
    border: 1px solid var(--peach);
    transform: scale(0.95) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-links-wrap li { width: 100%; }
  .nav-links-wrap .nav-link {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    text-align: left;
  }
  .nav-links-wrap.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta-desktop { display: none !important; }
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.blob-peach { background: var(--peach); }
.blob-honey { background: var(--honey-soft); }
.blob-rose { background: var(--rose); opacity: 0.35; }

/* Hand-drawn squiggle underline */
.squiggle {
  position: relative;
  display: inline-block;
}
.squiggle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12'><path d='M0 6 Q 12.5 0, 25 6 T 50 6 T 75 6 T 100 6' stroke='%23c87966' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Star/flower decorations */
.deco-flower {
  display: inline-block;
  font-family: serif;
  color: var(--honey);
  transform: rotate(-8deg);
}

/* Hero shape */
.hero-shape {
  border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%;
  overflow: hidden;
  position: relative;
}

.organic-shape {
  border-radius: 64% 36% 53% 47% / 47% 56% 44% 53%;
  overflow: hidden;
}
.organic-shape-2 {
  border-radius: 38% 62% 55% 45% / 62% 38% 62% 38%;
  overflow: hidden;
}
.organic-shape-3 {
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
}

/* Sticker badge */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: var(--honey);
  color: var(--ink);
  border-radius: 50%;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.1;
  padding: 0.8rem;
  font-weight: 600;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px -6px rgba(240, 188, 120, 0.6);
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(-7deg); }
}

/* Soft card */
.soft-card {
  background: var(--milk);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(232, 168, 146, 0.18);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.soft-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -16px rgba(200, 121, 102, 0.22);
  border-color: var(--blush);
}

/* Service tile (homepage) */
.service-tile {
  background: var(--milk);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(232, 168, 146, 0.15);
  display: block;
  position: relative;
}
.service-tile:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 28px 50px -18px rgba(200, 121, 102, 0.3);
}
.service-tile .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px;
  margin: 1rem 1rem 0;
  position: relative;
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-tile:hover img { transform: scale(1.08); }

.service-tile .price-pill {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--milk);
  color: var(--ink);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Floating icon chip */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--peach);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover .icon-chip {
  background: var(--honey);
  transform: rotate(-12deg) scale(1.1);
}

/* Why-pick big card */
.why-card {
  background: var(--peach-soft);
  border-radius: 36px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
}
.why-card:hover {
  background: var(--peach);
  transform: translateY(-4px);
}
.why-card .num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 1rem;
}

/* Bento gallery */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}
.bento > * {
  overflow: hidden;
  border-radius: 24px;
}
.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.bento > *:hover img { transform: scale(1.08); }
.bento .b-1 { grid-column: span 2; grid-row: span 2; border-radius: 36px; }
.bento .b-2 { grid-column: span 1; }
.bento .b-3 { grid-column: span 1; }
.bento .b-4 { grid-column: span 1; }
.bento .b-5 { grid-column: span 1; }
@media (max-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .bento .b-1 { grid-column: span 2; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--peach);
  padding: 1.5rem 0;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 32s linear infinite;
  padding-left: 3rem;
  align-items: center;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-item::after {
  content: '✿';
  color: var(--terracotta);
  font-style: normal;
  font-size: 1rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Testimonial card */
.testi-card {
  background: var(--milk);
  border-radius: 36px;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--peach);
  position: relative;
  transition: all 0.4s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -16px rgba(200,121,102,0.22); }
.testi-card .stars {
  color: var(--honey);
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testi-card .quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testi-card .who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
}
.testi-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  font-weight: 600;
}

/* Form */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--milk);
  border: 1.5px solid var(--peach);
  border-radius: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--milk);
  box-shadow: 0 0 0 4px rgba(200, 121, 102, 0.12);
}
.form-textarea { min-height: 130px; resize: vertical; border-radius: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.45rem;
  margin-left: 0.4rem;
}

/* Info row (contact) */
.info-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  padding: 1.1rem;
  border-radius: 20px;
  align-items: start;
  transition: background 0.3s ease;
}
.info-row:hover { background: var(--peach-soft); }
.info-row .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.info-row .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.info-row .value {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}
.info-row a { color: inherit; transition: color 0.2s; }
.info-row a:hover { color: var(--terracotta); }

/* Service detail card (services page) */
.service-deep-card {
  background: var(--milk);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--peach);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.service-deep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(200,121,102,0.25);
}
.service-deep-card .img-side {
  overflow: hidden;
  min-height: 280px;
}
@media (max-width: 1023px) {
  .service-deep-card .img-side { aspect-ratio: 5/4; }
}
.service-deep-card .img-side img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.service-deep-card:hover .img-side img { transform: scale(1.06); }

/* Chips */
.chip-soft {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--peach-soft);
  border: 1px solid var(--peach);
  color: var(--plum);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.chip-soft:hover {
  background: var(--honey-soft);
  border-color: var(--honey);
  transform: translateY(-1px);
}

/* Pricing card boutique */
.pricing-boutique {
  background: var(--milk);
  border-radius: 32px;
  padding: 2.25rem;
  border: 1.5px solid var(--peach);
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pricing-boutique:hover {
  transform: translateY(-6px);
  border-color: var(--blush);
  box-shadow: 0 24px 44px -18px rgba(200,121,102,0.24);
}
.pricing-boutique h3 {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pricing-boutique .header-emoji {
  font-size: 1.4rem;
}
.pricing-boutique .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pricing-boutique .item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  font-size: 0.94rem;
  border-bottom: 1px dashed rgba(232, 168, 146, 0.4);
}
.pricing-boutique .item:last-child { border-bottom: none; }
.pricing-boutique .item .name { color: var(--soft-ink); flex: 1; padding-right: 0.5rem; }
.pricing-boutique .item .amt {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.pricing-boutique.featured {
  background: linear-gradient(160deg, var(--peach) 0%, var(--honey-soft) 100%);
  border-color: var(--honey);
}
.pricing-boutique.featured::before {
  content: '✿ Best loved';
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--ink);
  color: var(--milk);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  border-radius: 999px;
}

/* Stats numbers */
.stat-num-2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}

/* Footer */
.footer-link-2 {
  color: rgba(255, 252, 246, 0.7);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}
.footer-link-2:hover {
  color: var(--peach);
  border-bottom-color: var(--peach);
}
.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 252, 246, 0.08);
  border: 1px solid rgba(255, 252, 246, 0.15);
  color: var(--milk);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-pill:hover {
  background: var(--honey);
  color: var(--ink);
  border-color: var(--honey);
  transform: translateY(-3px) rotate(-8deg);
}

/* Selection */
::selection { background: var(--terracotta); color: var(--milk); }

/* Section padding helper */
.section-pad { padding-top: clamp(4rem, 9vw, 8rem); padding-bottom: clamp(4rem, 9vw, 8rem); }

/* Big rounded floating CTA */
.floating-cta {
  position: relative;
  border-radius: 48px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--peach) 0%, var(--honey-soft) 100%);
  overflow: hidden;
  text-align: center;
}
.floating-cta::before {
  content: '✿';
  position: absolute;
  top: 12%;
  left: 8%;
  font-size: 3.5rem;
  color: var(--terracotta);
  opacity: 0.35;
  transform: rotate(-15deg);
}
.floating-cta::after {
  content: '❀';
  position: absolute;
  bottom: 10%;
  right: 8%;
  font-size: 4rem;
  color: var(--rose);
  opacity: 0.4;
  transform: rotate(20deg);
}

/* Section heading helpers */
.section-heading {
  font-size: clamp(2.3rem, 5.5vw, 4.5rem);
  line-height: 1.02;
}
.section-heading-sm {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

/* Hero typography */
.hero-display {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-display em { font-style: italic; font-weight: 300; color: var(--terracotta); }

/* Tiny rotating star spinner accent */
.spin-slow { animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
