:root {
  --brand: #ff145b;
  --brand-dark: #de0649;
  --coral: #ff785f;
  --ink: #251a24;
  --muted: #756a73;
  --cream: #fff9f8;
  --blush: #fff0f3;
  --line: #eadfe2;
  --purple: #9c6cf1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(71, 30, 48, .12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
}

.section-padding {
  padding: 112px 0;
}

.section-kicker {
  color: var(--brand);
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 14px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.safety-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0;
}

.section-heading h2 em,
.safety-title em {
  color: var(--brand);
  font-weight: 700;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 16px 0 0;
  max-width: 590px;
}

.text-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
  text-decoration: none;
}

.text-link i {
  color: var(--brand);
  transition: transform .25s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid transparent;
  padding: 13px 0;
  transition: all .25s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  border-color: rgba(54, 29, 43, .08);
  box-shadow: 0 10px 40px rgba(45, 23, 37, .07);
  padding: 9px 0;
}

.navbar-brand {
  margin-right: 28px;
  text-decoration: none;
}

.brand-logo {
  border-radius: 14px;
  display: block;
  height: 47px;
  overflow: hidden;
  position: relative;
  width: 51px;
}

.brand-logo img {
  display: block;
  height: 46px;
  max-width: none;
  width: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.brand-copy small {
  color: var(--brand);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .18em;
  margin-top: 5px;
}

.navbar .nav-link {
  color: #594e56;
  font-size: .93rem;
  font-weight: 600;
  padding: .75rem 0 !important;
  position: relative;
}

.navbar .nav-link::after {
  background: var(--brand);
  border-radius: 3px;
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform .22s ease;
  width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--ink);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 14px;
  font-weight: 700;
  transition: all .25s ease;
}

.btn-brand {
  background: linear-gradient(135deg, #ff2465, #f7004f);
  border: 0;
  box-shadow: 0 12px 25px rgba(255, 20, 91, .24);
  color: var(--white);
  padding: .77rem 1.25rem;
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #ed0d52, #d90246);
  box-shadow: 0 16px 30px rgba(255, 20, 91, .3);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  border-radius: 16px;
  font-size: .98rem;
  padding: 1rem 1.55rem;
}

.btn-soft {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(65, 36, 54, .1);
  color: var(--ink);
}

.btn-soft:hover {
  background: var(--white);
  border-color: rgba(255, 20, 91, .22);
  color: var(--ink);
  transform: translateY(-2px);
}

.play-icon {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--brand);
  display: inline-flex;
  height: 29px;
  justify-content: center;
  margin-right: 7px;
  width: 29px;
}

/* Hero */
.hero-section {
  background:
    radial-gradient(circle at 5% 26%, rgba(255, 219, 228, .8), transparent 25%),
    radial-gradient(circle at 90% 18%, rgba(248, 227, 255, .7), transparent 29%),
    linear-gradient(155deg, #fff 0%, #fff9f9 46%, #fff5f6 100%);
  min-height: 760px;
  overflow: hidden;
  padding: 150px 0 96px;
  position: relative;
}

.hero-section::after {
  background-image: radial-gradient(rgba(65, 25, 45, .08) .8px, transparent .8px);
  background-size: 22px 22px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, #000, transparent 40%);
  opacity: .28;
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(8px);
  opacity: .45;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: #ffc4d5;
  height: 330px;
  left: -190px;
  top: 220px;
  width: 330px;
}

.hero-glow-two {
  background: #efd8ff;
  height: 390px;
  right: -210px;
  top: 70px;
  width: 390px;
}

.hero-copy-col {
  padding-right: 62px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 20, 91, .14);
  border-radius: 100px;
  color: #5c4351;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 9px;
  letter-spacing: .04em;
  margin-bottom: 25px;
  padding: 7px 13px 7px 7px;
}

.eyebrow-dot {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--coral));
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.45rem, 6.2vw, 6rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .96;
  margin: 0;
  max-width: 750px;
}

.hero-title span {
  color: var(--brand);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.hero-title span::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='226' height='15' viewBox='0 0 226 15'%3E%3Cpath d='M3 11C55 2 150 2 223 8' fill='none' stroke='%23ff145b' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  bottom: -9px;
  content: "";
  height: 13px;
  left: 1px;
  opacity: .7;
  position: absolute;
  width: 100%;
}

.hero-lead {
  color: #675a63;
  font-size: 1.13rem;
  line-height: 1.75;
  margin: 29px 0 31px;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-row {
  align-items: center;
  display: flex;
  gap: 17px;
  margin-top: 38px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img,
.avatar-stack span {
  border: 3px solid var(--white);
  border-radius: 50%;
  height: 43px;
  margin-left: -11px;
  object-fit: cover;
  width: 43px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack span {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  font-size: .66rem;
  font-weight: 700;
  justify-content: center;
}

.rating-stars {
  color: #ffad33;
  font-size: .72rem;
  letter-spacing: 2px;
}

.trust-row p {
  color: var(--muted);
  font-size: .79rem;
  margin: 3px 0 0;
}

.trust-row p strong {
  color: var(--ink);
}

/* Form */
.signup-shell {
  padding: 15px;
  position: relative;
  z-index: 2;
}

.signup-shell::before {
  background: linear-gradient(135deg, rgba(255, 20, 91, .16), rgba(157, 108, 241, .1));
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 35px;
  content: "";
  inset: 0;
  position: absolute;
  transform: rotate(2.5deg);
}

.signup-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  z-index: 2;
}

.signup-card-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.signup-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: -.035em;
  margin: -6px 0 0;
}

.verified-badge {
  align-items: center;
  background: #eefbf5;
  border-radius: 50%;
  color: #20a770;
  display: flex;
  font-size: 1.4rem;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.signup-intro {
  color: var(--muted);
  font-size: .9rem;
  margin: 8px 0 22px;
}

.form-label,
legend.form-label {
  color: #4f424a;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 7px;
}

legend.form-label {
  float: none;
  width: auto;
}

.choice-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 1fr;
}

.choice-btn {
  align-items: center;
  background: #fbf8f9;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #665a62;
  cursor: pointer;
  display: flex;
  font-size: .87rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  padding: 10px 12px;
  transition: all .2s ease;
}

.choice-btn:hover {
  border-color: rgba(255, 20, 91, .35);
}

.btn-check:checked + .choice-btn {
  background: var(--blush);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
  color: var(--brand);
}

.form-control,
.form-select {
  background-color: #fbf9fa;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: .88rem;
  min-height: 47px;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--white);
  border-color: rgba(255, 20, 91, .6);
  box-shadow: 0 0 0 .2rem rgba(255, 20, 91, .1);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap > i {
  color: #9b8e96;
  font-size: 1rem;
  left: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.input-icon-wrap .form-control {
  padding-left: 41px;
}

.form-check-label {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.form-check-label a {
  color: var(--ink);
  font-weight: 700;
}

.form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

.submit-btn {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px 14px 19px;
}

.submit-btn i {
  align-items: center;
  background: rgba(255, 255, 255, .18);
  border-radius: 9px;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.privacy-note {
  color: #988b93;
  font-size: .69rem;
  margin: 12px 0 0;
  text-align: center;
}

.privacy-note i {
  color: #59ae88;
  margin-right: 4px;
}

.floating-heart {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(74, 31, 49, .14);
  color: var(--brand);
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 3;
}

.floating-heart-one {
  font-size: 1rem;
  height: 48px;
  left: -14px;
  top: 79px;
  transform: rotate(-12deg);
  width: 48px;
}

.floating-heart-two {
  bottom: 86px;
  color: var(--coral);
  font-size: .77rem;
  height: 37px;
  right: -3px;
  transform: rotate(12deg);
  width: 37px;
}

/* Stats */
.stats-strip {
  margin-top: -45px;
  position: relative;
  z-index: 3;
}

.stats-card {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(56, 31, 46, .07);
  border-radius: 22px;
  box-shadow: 0 17px 50px rgba(53, 28, 42, .09);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  padding: 24px 34px;
}

.stat-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-item strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  letter-spacing: -.03em;
}

.stat-item strong span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: .9rem;
}

.stat-item > span {
  color: var(--muted);
  font-size: .75rem;
}

.stat-divider {
  background: var(--line);
  height: 37px;
  width: 1px;
}

/* Profiles */
.profiles-section {
  background: var(--white);
}

.profile-card {
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(47, 23, 36, .12);
  height: 415px;
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.profile-card:hover {
  box-shadow: 0 24px 55px rgba(47, 23, 36, .2);
  transform: translateY(-8px);
}

.profile-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  width: 100%;
}

.profile-card:hover > img {
  transform: scale(1.04);
}

.profile-card::after {
  background: linear-gradient(180deg, transparent 37%, rgba(25, 10, 20, .86) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.like-button {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 0;
  border-radius: 50%;
  color: var(--brand);
  display: flex;
  font-size: 1.15rem;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: all .25s ease;
  width: 44px;
  z-index: 3;
}

.like-button:hover,
.like-button.active {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.08);
}

.match-pill {
  background: rgba(255, 255, 255, .9);
  border-radius: 100px;
  color: var(--brand);
  font-size: .69rem;
  font-weight: 700;
  left: 15px;
  padding: 6px 10px;
  position: absolute;
  top: 17px;
  z-index: 2;
}

.profile-overlay {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.profile-status {
  align-items: center;
  color: rgba(255, 255, 255, .8);
  display: flex;
  font-size: .69rem;
  gap: 6px;
}

.profile-status span {
  background: #4fe0a4;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(79, 224, 164, .18);
  height: 6px;
  width: 6px;
}

.profile-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.62rem;
  margin: 6px 0 3px;
}

.profile-overlay h3 i {
  color: #62bff3;
  font-size: .87rem;
}

.profile-overlay p {
  color: rgba(255, 255, 255, .75);
  font-size: .76rem;
  margin: 0 0 12px;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.interest-tags span {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  font-size: .65rem;
  padding: 4px 8px;
  backdrop-filter: blur(8px);
}

/* Steps */
.steps-section {
  background: var(--cream);
}

.steps-section .section-heading {
  max-width: 690px;
}

.steps-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.steps-row {
  z-index: 1;
}

.step-line {
  border-top: 2px dashed #ead7dd;
  left: 21%;
  position: absolute;
  right: 21%;
  top: 59px;
  z-index: -1;
}

.step-card {
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(69, 35, 51, .07);
  border-radius: 24px;
  height: 100%;
  padding: 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover,
.featured-step {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(63, 32, 46, .08);
  transform: translateY(-7px);
}

.step-number {
  color: #d9c9cf;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  position: absolute;
  right: 27px;
  top: 26px;
}

.step-icon {
  align-items: center;
  border-radius: 19px;
  display: flex;
  font-size: 1.6rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 24px;
  width: 58px;
}

.icon-pink {
  background: #ffe5ed;
  color: var(--brand);
}

.icon-coral {
  background: #fff0e9;
  color: var(--coral);
}

.icon-purple {
  background: #f1e9ff;
  color: var(--purple);
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
}

.step-card a {
  color: var(--brand);
  display: inline-flex;
  font-size: .83rem;
  font-weight: 700;
  gap: 8px;
  margin-top: 9px;
  text-decoration: none;
}

/* Story */
.stories-section {
  background: #2b1724;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.stories-section::before {
  background: radial-gradient(circle, rgba(255, 20, 91, .2), transparent 67%);
  content: "";
  height: 700px;
  left: -360px;
  position: absolute;
  top: -200px;
  width: 700px;
}

.quote-mark {
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 6rem;
  height: 54px;
  line-height: 1;
  margin-top: 7px;
}

.stories-section blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 12px 0 22px;
}

.story-copy {
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  max-width: 480px;
}

.story-couple {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-top: 28px;
}

.story-avatar-pair {
  display: flex;
}

.story-avatar-pair img {
  border: 3px solid #2b1724;
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.story-avatar-pair img + img {
  margin-left: -13px;
}

.story-couple strong,
.story-couple span {
  display: block;
}

.story-couple strong {
  font-size: .89rem;
}

.story-couple span {
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
}

.story-visual {
  min-height: 540px;
  position: relative;
}

.story-photo-main {
  border-radius: 150px 150px 28px 28px;
  height: 520px;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: 78%;
}

.story-photo-main::after {
  background: linear-gradient(180deg, transparent, rgba(40, 15, 29, .14));
  content: "";
  inset: 0;
  position: absolute;
}

.story-photo-main img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-note {
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  bottom: 47px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  left: 1%;
  padding: 16px 22px;
  position: absolute;
  width: 230px;
}

.story-note i {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--brand);
  display: flex;
  font-size: 1rem;
  grid-row: span 2;
  height: 40px;
  justify-content: center;
  margin-right: 12px;
  width: 40px;
}

.story-note strong,
.story-note span {
  display: block;
}

.story-note strong {
  font-size: .77rem;
}

.story-note span {
  color: var(--muted);
  font-size: .65rem;
}

/* Safety */
.safety-section {
  background: var(--white);
}

.safety-visual {
  background: linear-gradient(145deg, #fff4f6, #f8efff);
  border-radius: 36px;
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.safety-visual::before,
.safety-visual::after {
  border: 1px solid rgba(255, 20, 91, .13);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.safety-visual::before {
  height: 330px;
  width: 330px;
}

.safety-visual::after {
  height: 220px;
  width: 220px;
}

.safety-brand-mark {
  border-radius: 50%;
  height: 158px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  z-index: 2;
}

.safety-brand-mark img {
  height: 158px;
  max-width: none;
  width: auto;
}

.safety-card {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 16px;
  box-shadow: 0 17px 40px rgba(72, 35, 52, .12);
  display: flex;
  gap: 11px;
  padding: 13px 15px;
  position: absolute;
  z-index: 3;
}

.safety-card-one {
  left: 28px;
  top: 49px;
}

.safety-card-two {
  right: 25px;
  top: 188px;
}

.safety-card-three {
  bottom: 45px;
  left: 55px;
}

.safety-icon {
  align-items: center;
  background: var(--blush);
  border-radius: 11px;
  color: var(--brand);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.safety-card strong,
.safety-card small {
  display: block;
}

.safety-card strong {
  font-size: .76rem;
}

.safety-card small {
  color: var(--muted);
  font-size: .62rem;
  margin-top: 2px;
}

.safety-title {
  margin-bottom: 21px;
}

.safety-section .col-lg-5 > p {
  color: var(--muted);
  line-height: 1.8;
}

.safety-list {
  display: grid;
  gap: 17px;
  list-style: none;
  margin: 26px 0 29px;
  padding: 0;
}

.safety-list li {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: .9rem;
  gap: 11px;
}

.safety-list i {
  color: var(--brand);
  font-size: 1.12rem;
}

.safety-list strong {
  color: var(--ink);
}

/* CTA */
.cta-section {
  padding: 20px 0 90px;
}

.cta-card {
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 255, 255, .13), transparent 25%),
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, .12), transparent 24%),
    linear-gradient(135deg, #ff145b, #df0648);
  border-radius: 32px;
  color: var(--white);
  overflow: hidden;
  padding: 73px 24px;
  position: relative;
}

.cta-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -.05em;
  line-height: 1.05;
  margin-bottom: 17px;
}

.cta-card h2 em {
  color: #ffd4e1;
}

.cta-card p {
  color: rgba(255, 255, 255, .8);
  margin: 0 auto 25px;
}

.cta-card .btn-light {
  color: var(--brand);
}

.cta-card .btn-light:hover {
  box-shadow: 0 14px 35px rgba(84, 7, 37, .25);
  transform: translateY(-3px);
}

.cta-card small {
  color: rgba(255, 255, 255, .68);
  display: block;
  font-size: .71rem;
  margin-top: 17px;
}

.cta-heart {
  color: rgba(255, 255, 255, .11);
  position: absolute;
}

.cta-heart-left {
  font-size: 10rem;
  left: -31px;
  top: -32px;
  transform: rotate(-20deg);
}

.cta-heart-right {
  bottom: -62px;
  font-size: 13rem;
  right: -26px;
  transform: rotate(18deg);
}

/* Footer */
footer {
  background: #21161d;
  color: var(--white);
  padding: 68px 0 25px;
}

.footer-brand {
  color: var(--white);
  text-decoration: none;
}

.footer-brand .brand-logo {
  background: var(--white);
}

.footer-about {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  line-height: 1.7;
  margin: 19px 0;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  display: flex;
  height: 36px;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
  width: 36px;
}

.social-links a:hover {
  background: var(--brand);
  color: var(--white);
}

footer h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 11px 0 18px;
  text-transform: uppercase;
}

footer .col-6 a {
  color: rgba(255, 255, 255, .5);
  display: block;
  font-size: .82rem;
  margin: 11px 0;
  text-decoration: none;
}

footer .col-6 a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .36);
  display: flex;
  font-size: .69rem;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 21px;
}

.footer-bottom i {
  color: var(--brand);
}

/* Modal */
.success-modal .modal-content {
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 43px 39px 39px;
  text-align: center;
}

.success-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.success-icon {
  align-items: center;
  background: linear-gradient(135deg, #ff4a7d, var(--brand));
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(255, 20, 91, .27);
  color: var(--white);
  display: flex;
  font-size: 1.55rem;
  height: 68px;
  justify-content: center;
  margin: 0 auto 19px;
  width: 68px;
}

.success-modal h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.success-modal p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Motion */
.reveal {
  animation: fadeUp .75s ease both;
}

.reveal-delay-1 { animation-delay: .1s; }
.reveal-delay-2 { animation-delay: .2s; }
.reveal-delay-3 { animation-delay: .3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-copy-col { padding-right: 30px; }
  .signup-card { padding: 26px; }
  .profile-card { height: 450px; }
}

@media (max-width: 991.98px) {
  .section-padding { padding: 88px 0; }
  .navbar-collapse {
    background: rgba(255, 255, 255, .98);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(42, 22, 35, .1);
    margin-top: 10px;
    padding: 18px;
  }
  .navbar .nav-link::after { display: none; }
  .hero-section { padding: 140px 0 105px; }
  .hero-copy-col { padding-right: calc(var(--bs-gutter-x) * .5); text-align: center; }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .signup-shell { margin: 18px auto 0; max-width: 590px; }
  .stats-card { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-divider { display: none; }
  .step-card { transform: none; }
  .step-card:hover, .featured-step { transform: translateY(-4px); }
  .story-photo-main { width: 88%; }
  .safety-visual { min-height: 470px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 74px 0; }
  .brand-copy strong { font-size: 1.3rem; }
  .brand-logo { height: 43px; width: 47px; }
  .brand-logo img { height: 42px; }
  .hero-section { min-height: auto; padding: 125px 0 94px; }
  .hero-title { font-size: clamp(3rem, 14.5vw, 4.5rem); }
  .hero-title br { display: none; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-row { margin-top: 28px; }
  .signup-shell { padding: 8px; }
  .signup-card { border-radius: 23px; padding: 23px 19px; }
  .floating-heart-one { left: -7px; top: 69px; }
  .floating-heart-two { right: -6px; }
  .stats-strip { margin-top: -35px; }
  .stats-card { border-radius: 18px; padding: 21px 15px; }
  .stat-item strong { font-size: 1.45rem; }
  .stat-item > span { font-size: .67rem; }
  .section-heading { margin-bottom: 31px; }
  .section-heading h2, .safety-title { font-size: 2.6rem; }
  .profile-card { height: 470px; }
  .story-visual { min-height: 440px; }
  .story-photo-main { border-radius: 100px 100px 23px 23px; height: 420px; width: 92%; }
  .story-note { bottom: 24px; left: 0; }
  .safety-card-two { right: 12px; }
  .safety-card-three { left: 18px; }
  .cta-section { padding-bottom: 62px; }
  .cta-card { border-radius: 25px; padding: 60px 18px; }
  .cta-card h2 br { display: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .eyebrow { font-size: .69rem; }
  .signup-card h2 { font-size: 1.95rem; }
  .choice-btn { padding-left: 7px; padding-right: 7px; }
  .stats-card { gap: 17px 7px; }
  .profile-card { height: 430px; }
  .safety-visual { min-height: 430px; }
  .safety-brand-mark { height: 120px; width: 133px; }
  .safety-brand-mark img { height: 120px; }
  .safety-visual::before { height: 280px; width: 280px; }
  .safety-visual::after { height: 185px; width: 185px; }
  .safety-card-one { left: 13px; top: 35px; }
  .safety-card-two { right: 9px; top: 175px; }
  .safety-card-three { bottom: 35px; left: 12px; }
  .success-modal .modal-content { padding: 39px 23px 31px; }
}

/* Shared multi-page additions */
.navbar .nav-link.active {
  color: var(--ink);
}

.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.display-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.45rem, 4.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.04;
  margin: 0;
}

.display-heading em {
  color: var(--brand);
}

.section-side-copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Homepage: values */
.values-section {
  background: var(--white);
  padding-bottom: 34px;
}

.value-card {
  border: 1px solid rgba(54, 27, 43, .07);
  border-radius: 26px;
  height: 100%;
  min-height: 350px;
  padding: 31px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.value-card:hover {
  box-shadow: 0 22px 55px rgba(59, 27, 44, .1);
  transform: translateY(-7px);
}

.value-card-pink { background: #fff0f3; }
.value-card-cream { background: #fff8ed; }
.value-card-lilac { background: #f7f1ff; }

.value-card > span {
  color: rgba(37, 26, 36, .28);
  font-family: "Playfair Display", serif;
  font-size: .9rem;
  position: absolute;
  right: 28px;
  top: 28px;
}

.value-icon {
  align-items: center;
  background: rgba(255, 255, 255, .8);
  border-radius: 18px;
  color: var(--brand);
  display: flex;
  font-size: 1.55rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 54px;
  width: 58px;
}

.value-card-cream .value-icon { color: #de7922; }
.value-card-lilac .value-icon { color: var(--purple); }

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  letter-spacing: -.02em;
}

.value-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.value-card a {
  color: var(--ink);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 7px;
  margin-top: 8px;
  text-decoration: none;
}

.value-card a i { color: var(--brand); }

/* Homepage: journal */
.journal-section {
  background: var(--cream);
}

.journal-card {
  overflow: hidden;
  position: relative;
}

.journal-featured {
  border-radius: 27px;
  height: 530px;
}

.journal-featured::after {
  background: linear-gradient(180deg, transparent 25%, rgba(28, 12, 23, .9));
  content: "";
  inset: 0;
  position: absolute;
}

.journal-featured > img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  width: 100%;
}

.journal-featured:hover > img { transform: scale(1.035); }

.journal-overlay {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 34px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.journal-overlay > span,
.journal-card-small span {
  color: #ff9ab8;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.journal-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.16;
  margin: 9px 0 10px;
  max-width: 480px;
}

.journal-overlay p {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
  margin: 0;
  max-width: 450px;
}

.journal-overlay > a {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  bottom: 34px;
  color: var(--brand);
  display: flex;
  height: 45px;
  justify-content: center;
  position: absolute;
  right: 31px;
  text-decoration: none;
  width: 45px;
}

.journal-stack {
  display: grid;
  gap: 18px;
  height: 100%;
}

.journal-card-small {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(56, 29, 45, .07);
  border-radius: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 155px 1fr;
  overflow: hidden;
  padding: 12px 22px 12px 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.journal-card-small:hover {
  box-shadow: 0 14px 34px rgba(56, 29, 45, .08);
  transform: translateX(4px);
}

.journal-card-small img {
  border-radius: 13px;
  height: 132px;
  object-fit: cover;
  width: 100%;
}

.journal-card-small h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.16rem;
  line-height: 1.25;
  margin: 6px 0 9px;
}

.journal-card-small a {
  color: var(--brand);
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}

/* Homepage: FAQ */
.faq-section {
  background: var(--white);
}

.sendit-accordion .accordion-item {
  border-bottom: 1px solid var(--line);
}

.sendit-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: .97rem;
  font-weight: 700;
  padding: 22px 3px;
}

.sendit-accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
}

.sendit-accordion .accordion-button::after {
  background-size: 1rem;
}

.sendit-accordion .accordion-body {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  padding: 0 40px 23px 3px;
}

/* Subpage base */
.subpage-hero {
  background:
    radial-gradient(circle at 8% 38%, rgba(255, 213, 226, .76), transparent 28%),
    radial-gradient(circle at 94% 14%, rgba(239, 217, 255, .72), transparent 27%),
    linear-gradient(150deg, #fff 0%, #fff8f9 100%);
  min-height: 660px;
  overflow: hidden;
  padding: 165px 0 90px;
  position: relative;
}

.subpage-hero::after {
  background-image: radial-gradient(rgba(61, 26, 45, .08) .8px, transparent .8px);
  background-size: 22px 22px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, #000, transparent 42%);
  opacity: .23;
  pointer-events: none;
  position: absolute;
}

.subpage-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .99;
  margin: 0;
}

.subpage-title em {
  color: var(--brand);
}

.subpage-lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 25px 0 27px;
  max-width: 600px;
}

/* Discover page */
.discover-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.discover-trust span {
  align-items: center;
  color: #62545d;
  display: flex;
  font-size: .74rem;
  font-weight: 700;
  gap: 6px;
}

.discover-trust i { color: var(--brand); }

.discover-collage {
  height: 470px;
  margin-left: 40px;
  position: relative;
}

.collage-photo {
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: 0 25px 60px rgba(56, 26, 43, .15);
  overflow: hidden;
  position: absolute;
}

.collage-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.collage-photo-main {
  border-radius: 150px 150px 28px 28px;
  bottom: 0;
  height: 420px;
  left: 20px;
  width: 315px;
}

.collage-photo-small {
  border-radius: 90px 90px 22px 22px;
  height: 255px;
  right: 3px;
  top: 8px;
  transform: rotate(4deg);
  width: 190px;
}

.collage-match {
  align-items: center;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 17px;
  bottom: 44px;
  box-shadow: 0 17px 40px rgba(57, 25, 43, .14);
  display: flex;
  gap: 11px;
  padding: 14px 16px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.collage-match > span {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--brand);
  display: flex;
  height: 41px;
  justify-content: center;
  width: 41px;
}

.collage-match small,
.collage-match strong { display: block; }
.collage-match small { color: var(--brand); font-size: .54rem; font-weight: 700; letter-spacing: .1em; }
.collage-match strong { font-size: .72rem; margin-top: 3px; }

.collage-rating {
  align-items: center;
  background: #2a1723;
  border-radius: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 11px 14px;
  position: absolute;
  top: 27px;
  z-index: 3;
}

.collage-rating strong { font-family: "Playfair Display", serif; font-size: 1.25rem; }
.collage-rating span { color: rgba(255,255,255,.6); font-size: .52rem; }
.collage-rating i { color: #ffbd3d; }

.profile-browser {
  background: var(--cream);
}

.filter-card {
  background: var(--white);
  border: 1px solid rgba(58, 29, 45, .07);
  border-radius: 25px;
  box-shadow: 0 18px 50px rgba(54, 27, 42, .08);
  margin-top: -165px;
  padding: 28px;
  position: relative;
  z-index: 4;
}

.filter-heading,
.browser-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.filter-heading { margin-bottom: 20px; }
.filter-heading h2 { font-family: "Playfair Display", serif; font-size: 1.85rem; margin: -6px 0 0; }
.filter-reset { background: transparent; border: 0; color: var(--muted); font-size: .75rem; font-weight: 700; }
.filter-reset:hover { color: var(--brand); }
.filter-button { min-height: 47px; }

.browser-heading {
  margin: 70px 0 28px;
}

.browser-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: -.03em;
  margin: -6px 0 0;
}

.sort-pill {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  display: flex;
  font-size: .75rem;
  font-weight: 700;
  gap: 7px;
  padding: 9px 13px;
}

.discover-profile-card { height: 405px; }
.filterable-profile.is-hidden { display: none; }

.no-profiles {
  background: var(--white);
  border: 1px dashed #decbd2;
  border-radius: 24px;
  padding: 65px 20px;
  text-align: center;
}

.no-profiles > i { color: var(--brand); font-size: 2.5rem; }
.no-profiles h3 { font-family: "Playfair Display", serif; margin: 12px 0 5px; }
.no-profiles p { color: var(--muted); }

.compatibility-section { background: var(--cream); padding-top: 12px; }
.compatibility-card { background: linear-gradient(135deg, #321b29, #4c2035); border-radius: 32px; color: var(--white); overflow: hidden; padding: 64px; }
.compatibility-card h2 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 4.5vw, 4rem); letter-spacing: -.045em; line-height: 1.06; }
.compatibility-card h2 em { color: #ff8cb0; }
.compatibility-card p { color: rgba(255,255,255,.63); line-height: 1.75; margin: 20px 0 27px; max-width: 530px; }
.compatibility-visual { height: 390px; position: relative; }
.compatibility-person { border: 7px solid rgba(255,255,255,.9); box-shadow: 0 20px 45px rgba(0,0,0,.25); overflow: hidden; position: absolute; }
.compatibility-person img { height: 100%; object-fit: cover; width: 100%; }
.compatibility-person-one { border-radius: 100px 100px 22px 22px; height: 320px; left: 30px; top: 20px; transform: rotate(-4deg); width: 215px; }
.compatibility-person-two { border-radius: 100px 100px 22px 22px; bottom: 10px; height: 300px; right: 18px; transform: rotate(5deg); width: 205px; }
.compatibility-score { align-items: center; background: var(--white); border-radius: 18px; color: var(--ink); display: flex; flex-direction: column; left: 50%; padding: 14px 20px; position: absolute; top: 50%; transform: translate(-50%,-50%); z-index: 3; }
.compatibility-score i { color: var(--brand); }
.compatibility-score strong { font-family: "Playfair Display", serif; font-size: 1.5rem; }
.compatibility-score span { color: var(--muted); font-size: .58rem; }
.compatibility-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; font-size: .64rem; padding: 7px 11px; position: absolute; }
.tag-one { left: 0; top: 3px; }
.tag-two { bottom: 5px; right: 0; }

/* Contact page */
.contact-hero {
  align-items: center;
  display: flex;
  min-height: 590px;
  padding-bottom: 110px;
}

.contact-hero .subpage-lead { max-width: 650px; }
.contact-orb { border-radius: 50%; filter: blur(4px); opacity: .55; position: absolute; }
.contact-orb-one { background: #ffd1de; height: 260px; left: -110px; top: 190px; width: 260px; }
.contact-orb-two { background: #ead7ff; height: 320px; right: -130px; top: 60px; width: 320px; }

.contact-main { background: var(--white); }
.contact-detail-grid { display: grid; gap: 14px; margin-top: 34px; }
.contact-detail-card { align-items: center; background: var(--cream); border: 1px solid rgba(63,32,47,.07); border-radius: 18px; color: var(--ink); display: grid; gap: 14px; grid-template-columns: auto 1fr auto; padding: 17px; text-decoration: none; transition: all .25s ease; }
.contact-detail-card:hover { background: var(--white); box-shadow: 0 15px 40px rgba(60,29,45,.09); color: var(--ink); transform: translateX(4px); }
.contact-detail-icon { align-items: center; background: var(--blush); border-radius: 13px; color: var(--brand); display: flex; font-size: 1.08rem; height: 48px; justify-content: center; width: 48px; }
.contact-detail-card small,.contact-detail-card strong,.contact-detail-card p { display: block; }
.contact-detail-card small { color: var(--brand); font-size: .55rem; font-weight: 700; letter-spacing: .1em; }
.contact-detail-card strong { font-size: .9rem; margin-top: 2px; }
.contact-detail-card p { color: var(--muted); font-size: .7rem; margin: 1px 0 0; }
.card-arrow { color: #b8a9b1; }
.response-note { align-items: flex-start; background: #f5efff; border-radius: 18px; display: flex; gap: 12px; margin-top: 25px; padding: 18px; }
.response-note > i { color: var(--purple); font-size: 1.25rem; }
.response-note strong { font-size: .82rem; }
.response-note p { color: var(--muted); font-size: .72rem; line-height: 1.55; margin: 4px 0 0; }

.contact-form-card { background: var(--white); border: 1px solid rgba(55,27,43,.08); border-radius: 28px; box-shadow: var(--shadow); padding: 34px; }
.contact-form-heading { align-items: flex-start; display: flex; justify-content: space-between; margin-bottom: 24px; }
.contact-form-heading h2 { font-family: "Playfair Display", serif; font-size: 2.35rem; margin: -8px 0 0; }
.contact-form-card textarea.form-control { padding: 14px; resize: vertical; }
.contact-submit { align-items: center; display: flex; gap: 30px; justify-content: space-between; min-width: 230px; }
.contact-success { align-items: center; background: #ecfbf3; border: 1px solid #c4edd7; border-radius: 15px; color: #18764c; display: flex; gap: 11px; margin-top: 18px; padding: 13px 15px; }
.contact-success > i { font-size: 1.2rem; }
.contact-success strong,.contact-success span { display: block; }
.contact-success strong { font-size: .8rem; }
.contact-success span { color: #4f816b; font-size: .7rem; }
.contact-success[hidden] { display: none !important; }

.office-section { background: var(--cream); }
.office-map { border-radius: 28px; box-shadow: 0 22px 60px rgba(55,29,43,.12); height: 500px; overflow: hidden; position: relative; }
.office-map iframe { border: 0; height: 100%; width: 100%; }
.map-address { align-items: center; background: rgba(255,255,255,.95); border-radius: 17px; bottom: 18px; box-shadow: 0 12px 35px rgba(38,19,30,.14); display: flex; gap: 11px; left: 18px; padding: 13px 17px; position: absolute; }
.map-address > span { align-items: center; background: var(--blush); border-radius: 12px; color: var(--brand); display: flex; height: 42px; justify-content: center; width: 42px; }
.map-address small,.map-address strong,.map-address p { display: block; }
.map-address small { color: var(--brand); font-size: .52rem; font-weight: 700; letter-spacing: .1em; }
.map-address strong { font-size: .76rem; }
.map-address p { color: var(--muted); font-size: .65rem; margin: 0; }
.office-points { display: grid; gap: 20px; margin-top: 31px; }
.office-points > div { align-items: flex-start; display: flex; gap: 13px; }
.office-points i { align-items: center; background: var(--white); border-radius: 11px; color: var(--brand); display: flex; height: 39px; justify-content: center; width: 39px; }
.office-points strong,.office-points small { display: block; }
.office-points strong { font-size: .86rem; }
.office-points small { color: var(--muted); font-size: .74rem; margin-top: 3px; }
.office-points a { color: var(--brand); font-weight: 700; text-decoration: none; }

.contact-faq { background: var(--white); }
.contact-faq .section-heading { max-width: 700px; }
.contact-faq .section-heading p { margin-left: auto; margin-right: auto; }
.support-topic { border: 1px solid var(--line); border-radius: 22px; height: 100%; padding: 28px; transition: all .25s ease; }
.support-topic:hover { border-color: rgba(255,20,91,.2); box-shadow: 0 17px 45px rgba(56,28,44,.08); transform: translateY(-5px); }
.support-topic > span { align-items: center; background: var(--blush); border-radius: 14px; color: var(--brand); display: flex; font-size: 1.25rem; height: 49px; justify-content: center; margin-bottom: 22px; width: 49px; }
.support-topic h3 { font-family: "Playfair Display", serif; font-size: 1.35rem; }
.support-topic p { color: var(--muted); font-size: .83rem; line-height: 1.65; }
.support-topic a { color: var(--brand); font-size: .76rem; font-weight: 700; text-decoration: none; }

@media (max-width: 1199.98px) {
  .discover-collage { margin-left: 0; }
  .collage-photo-main { width: 290px; }
  .collage-photo-small { width: 170px; }
  .compatibility-card { padding: 48px; }
}

@media (max-width: 991.98px) {
  .subpage-hero { min-height: auto; padding: 140px 0 170px; text-align: center; }
  .subpage-lead { margin-left: auto; margin-right: auto; }
  .discover-trust { justify-content: center; }
  .discover-collage { margin: 20px auto 0; max-width: 540px; }
  .filter-card { margin-top: -205px; }
  .compatibility-visual { margin: 0 auto; max-width: 520px; }
  .contact-hero { min-height: 560px; padding-bottom: 100px; }
  .contact-main { padding-top: 80px; }
  .value-icon { margin-bottom: 35px; }
}

@media (max-width: 767.98px) {
  .display-heading { font-size: 2.65rem; }
  .value-card { min-height: 310px; }
  .journal-featured { height: 470px; }
  .journal-card-small { grid-template-columns: 125px 1fr; padding-right: 14px; }
  .journal-card-small img { height: 122px; }
  .journal-card-small h3 { font-size: 1rem; }
  .subpage-title { font-size: clamp(3rem, 14vw, 4.4rem); }
  .subpage-hero { padding-bottom: 160px; }
  .discover-collage { height: 420px; }
  .collage-photo-main { height: 370px; left: 0; width: 270px; }
  .collage-photo-small { height: 220px; right: 0; width: 155px; }
  .collage-match { bottom: 28px; }
  .filter-card { margin-top: -180px; padding: 22px 18px; }
  .filter-heading,.browser-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .browser-heading { margin-top: 55px; }
  .discover-profile-card { height: 460px; }
  .compatibility-card { border-radius: 25px; padding: 37px 22px; }
  .compatibility-visual { height: 335px; }
  .compatibility-person-one { height: 280px; left: 0; width: 190px; }
  .compatibility-person-two { height: 260px; right: 0; width: 175px; }
  .contact-hero { min-height: 535px; padding-bottom: 90px; }
  .contact-form-card { border-radius: 23px; padding: 26px 20px; }
  .office-map { height: 430px; }
  .footer-bottom span:last-child { line-height: 1.7; }
}

@media (max-width: 480px) {
  .journal-featured { height: 450px; }
  .journal-overlay { padding: 24px; }
  .journal-overlay h3 { font-size: 1.65rem; }
  .journal-overlay p { padding-right: 30px; }
  .journal-overlay > a { bottom: 22px; right: 20px; }
  .journal-card-small { align-items: start; grid-template-columns: 100px 1fr; gap: 12px; }
  .journal-card-small img { height: 110px; }
  .subpage-hero { padding-top: 125px; }
  .discover-collage { height: 375px; }
  .collage-photo-main { height: 340px; width: 235px; }
  .collage-photo-small { height: 190px; width: 130px; }
  .collage-match { padding: 10px; right: -2px; }
  .collage-rating { left: -3px; }
  .discover-profile-card { height: 425px; }
  .compatibility-person-one { height: 245px; width: 160px; }
  .compatibility-person-two { height: 230px; width: 150px; }
  .compatibility-score { padding: 11px 15px; }
  .compatibility-tag { display: none; }
  .contact-detail-card { grid-template-columns: auto 1fr; }
  .contact-detail-card .card-arrow { display: none; }
  .contact-submit { width: 100%; }
  .map-address { bottom: 11px; left: 11px; right: 11px; }
}
