/* ============================================================
   Effects — David & Manon
   Soft, warm-tinted radii & shadows. Nothing harsh: shadows are
   low-contrast and warm-toned to sit on cream grounds.
   ============================================================ */

:root {
  /* ---- Corner radii ---- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* ---- Shadows (warm, soft) ---- */
  --shadow-xs:  0 1px 2px rgba(74, 63, 54, 0.06);
  --shadow-sm:  0 2px 8px rgba(74, 63, 54, 0.08);
  --shadow-md:  0 8px 24px rgba(74, 63, 54, 0.10);
  --shadow-lg:  0 18px 48px rgba(74, 63, 54, 0.14);
  --shadow-inset-hair: inset 0 0 0 1px var(--border-hair);

  /* ---- Motifs ---- */
  /* the lighter terracotta round / medallion the bride wants */
  --medallion: radial-gradient(circle at 50% 42%,
                 var(--terracotta-300) 0%,
                 var(--terracotta-300) 62%,
                 #efc6b6 78%,
                 transparent 100%);
  --medallion-flat: var(--terracotta-300);

  /* hairline divider used between sections */
  --rule: 1px solid var(--border-hair); /* @kind other */

  /* ---- Motion ---- */
  --ease-soft:   cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:    140ms; /* @kind other */
  --dur-base:    240ms; /* @kind other */
  --dur-slow:    520ms; /* @kind other */
}
