/* ===== main.css — Variables, Reset, Base Utilities ===== */

:root {
  --primary: #C2187A;
  --primary-light: #E674B9;
  --primary-dark: #8B0F5A;
  --secondary: #F5E8F2;
  --secondary-light: #FDF0F9;
  --text-dark: #4A223A;
  --text-medium: #6B3D5A;
  --text-light: #9B7A8A;
  --bg-white: #FFFFFF;
  --bg-light: #FAF9FE;
  --bg-cream: #FDFBFC;
  --gray-light: #F0F0F0;
  --gray-medium: #DCDCDC;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  --shadow-sm: 0 1px 3px rgba(74,34,58,.08);
  --shadow-md: 0 4px 20px rgba(74,34,58,.1);
  --shadow-lg: 0 10px 40px rgba(74,34,58,.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }


.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 48px); font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(194,24,122,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(194,24,122,.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-secondary { background: var(--secondary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary-light); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #388E3C; }

.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 100; box-shadow: var(--shadow-md); font-size: 20px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }