:root {
  --dark: #333333;
  --pink: #e88da3;
  --pink-dark: #92465b;
  --pink-deep: #692539;
  --ink: #1a1c1c;
  --muted: #655c5f;
  --soft: #fff9fc;
  --soft-2: #ffe2eb;
  --line: #eddfe2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--soft);
  overflow-x: hidden;
}

.font-brand {
  font-family: "Libre Caslon Text", serif;
}

.site-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(224, 224, 224, .3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.site-header [data-menu-toggle] {
  flex-shrink: 0;
  margin-left: auto;
}

.nav-link {
  color: #7f7f7f;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: .35px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--pink);
  font-weight: 700;
}

.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-outline {
  border: 1px solid var(--pink);
  background: rgba(255, 255, 255, .2);
  color: var(--pink);
  backdrop-filter: blur(4px);
}

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

.btn-primary:hover,
.btn-outline:hover,
.btn-white:hover {
  transform: translateY(-1px);
}

.section-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--pink-dark);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .35px;
}

.card {
  border: 1px solid rgba(237, 223, 226, .55);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 15px rgba(232, 141, 163, .12);
}

.soft-card {
  border: 1px solid rgba(237, 223, 226, .5);
  border-radius: 24px;
  background: #f3f3f3;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .1);
}

.text-shadow {
  text-shadow: 0 4px 1.5px rgba(0, 0, 0, .1), 0 10px 4px rgba(0, 0, 0, .04);
}

.icon-dot {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232, 141, 163, .12);
  color: var(--pink-dark);
}

.icon-dot svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  background: var(--dark);
  color: #9ca3af;
}

.footer h3,
.footer .brand {
  color: var(--pink);
}

.footer h4 {
  color: #fff;
}

.blog-chip {
  border-radius: 999px;
  background: #f7dce5;
  padding: 7px 18px;
  color: var(--pink-dark);
  font-size: 13px;
  line-height: 18px;
}

.blog-chip.active {
  background: var(--pink-dark);
  color: #fff;
}

.form-input {
  width: 100%;
  border-radius: 8px;
  background: #f3f3f3;
  padding: 13px 16px;
  color: #6b7280;
  font-size: 16px;
  line-height: 24px;
  outline: none;
}

.form-input:focus {
  box-shadow: 0 0 0 2px rgba(232, 141, 163, .35);
}

@media (max-width: 1023px) {
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 44px;
    overflow-wrap: break-word;
  }

  .home-hero p {
    max-width: 100%;
    font-size: 15px;
  }

  .home-hero .hero-portrait {
    max-width: 330px;
  }

  .btn-primary,
  .btn-outline,
  .btn-white {
    width: 100%;
  }
}
