/* ── Booking CTA Section ────────────────────────────────────────────── */

.ips-booking {
  background-color: var(--ink-surface);
  text-align: center;
  padding-block: 120px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink-border);
}

/* Drip SVG at top */
.ips-booking__drips {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

/* Shimmer gold line across full width */
.ips-booking__shimmer-line {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ink-gold-dark) 20%,
    var(--ink-gold) 40%,
    var(--ink-gold-light) 50%,
    var(--ink-gold) 60%,
    var(--ink-gold-dark) 80%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}

/* Subtle mandala bg pattern */
.ips-booking__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg transform='translate(60,60)'%3E%3Ccircle r='50' fill='none' stroke='%23c9a96e' stroke-width='0.5'/%3E%3Ccircle r='35' fill='none' stroke='%23c9a96e' stroke-width='0.8'/%3E%3Ccircle r='20' fill='none' stroke='%23c9a96e' stroke-width='0.5'/%3E%3Ccircle r='6' fill='%23c9a96e' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  z-index: 0;
}

.ips-booking__inner {
  position: relative;
  z-index: 1;
}

/* Headline */
.ips-booking__headline {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ink-text);
  margin-bottom: 20px;
}

/* Subtext */
.ips-booking__subtext {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Location line */
.ips-booking__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

/* Action buttons row */
.ips-booking__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Phone number */
.ips-booking__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-muted);
  transition: color 0.25s;
}

.ips-booking__phone:hover {
  color: var(--ink-gold);
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ips-booking__headline { font-size: 48px; }
  .ips-booking__actions { flex-direction: column; align-items: center; }
  .ips-booking__shimmer-line { top: 45px; }
}
