:root {
  --sv-bg: url("assets/soulmates-background-luxury-light.webp");
  --sv-text: #242424;
  --sv-muted: #67615a;
  --sv-gold: #a98242;
  --sv-gold-soft: #d7c49a;
  --sv-cream: #fbf7ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sv-text);
  background: var(--sv-cream);
}

.sv-landing {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 242, 0.74) 0%, rgba(255, 250, 242, 0.46) 44%, rgba(255, 250, 242, 0.14) 100%),
    var(--sv-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.sv-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 34% 27%, rgba(255,255,255,0.48), transparent 32%);
}

.sv-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  padding-top: clamp(86px, 17vh, 170px);
  margin-left: clamp(28px, 17vw, 300px);
  text-align: left;
}

.sv-eyebrow {
  margin: 0;
  color: var(--sv-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.sv-rule {
  display: block;
  width: 68px;
  height: 1px;
  margin: 22px 0 36px;
  background: linear-gradient(90deg, var(--sv-gold), var(--sv-gold-soft));
}

.sv-headline {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4.45vw, 68px);
  line-height: 1.24;
  letter-spacing: -0.055em;
  font-weight: 300;
  color: var(--sv-text);
}

.sv-contact {
  margin: clamp(42px, 5.5vh, 64px) 0 0;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.6;
  color: var(--sv-muted);
}

.sv-contact span {
  color: var(--sv-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.sv-contact a {
  color: var(--sv-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(169, 130, 66, 0.45);
  transition: border-color 180ms ease, color 180ms ease;
}

.sv-contact a:hover {
  color: var(--sv-gold);
  border-color: var(--sv-gold);
}

.sv-note {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 17vw, 300px);
  bottom: clamp(36px, 8vh, 82px);
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.55;
  color: rgba(36, 36, 36, 0.7);
}

.sv-note::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--sv-gold), transparent);
}

@media (max-width: 900px) {
  .sv-landing {
    background-position: 60% center;
  }

  .sv-content {
    width: min(680px, calc(100% - 44px));
    margin-left: 22px;
    padding-top: 76px;
  }

  .sv-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(680px, calc(100% - 44px));
    margin: 72px 0 0 22px;
    padding-bottom: 38px;
  }
}

@media (max-width: 520px) {
  .sv-content {
    padding-top: 56px;
  }

  .sv-rule {
    margin: 16px 0 28px;
  }

  .sv-headline {
    letter-spacing: -0.04em;
  }
}
