:root {
  --primary: #CA578D;
  --secondary: #63274F;
  --accent: #E59440;
  --ink: #2F1D29;
  --muted: #75646E;
  --white: #FFFFFF;
  --soft: #FFF7FA;
  --soft-2: #FBEAF1;
  --line: rgba(99, 39, 79, .12);
  --shadow: 0 18px 55px rgba(99, 39, 79, .12);
  --shadow-lg: 0 28px 80px rgba(99, 39, 79, .17);
  --radius: 24px;
  --container: 1180px;
  --header: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: auto;
}

.section {
  padding: 104px 0;
}

.section-white {
  background: #fff;
}

.soft-bg {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -.03em;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.25rem, 6vw, 6.4rem);
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.25rem);
}

h2 em,
h1 em {
  color: var(--primary);
  font-style: italic;
}

h1 span {
  color: var(--accent);
}

p {
  color: var(--muted);
}

.kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker-light {
  color: #FFD9E9;
}

.section-title {
  max-width: 740px;
  margin-bottom: 48px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

.section-title p {
  max-width: 650px;
  margin: 17px auto 0;
}

.section-title.light h2,
.section-title.light p {
  color: #fff;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 800;
  transition: .28s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(202, 87, 141, .28);
}

.btn-primary:hover {
  background: #B34478;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: #4b1739;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #d8822f;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--secondary);
}

@media(max-width:820px) {
  :root {
    --header: 74px;
  }

  .section {
    padding: 78px 0;
  }
}

@media(max-width:580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }
}

@media(prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
